From: Philipp Reh Date: Sat, 21 Feb 2009 09:42:17 +0000 (+0100) Subject: Removed unneeded warning. X-Git-Url: https://git.enpas.org/?p=jmdict-cli.git;a=commitdiff_plain;h=9c1724988dca676620a8b6b7326bf649c65422c6 Removed unneeded warning. Remove \2 at the end. --- diff --git a/kana2romaji.cpp b/kana2romaji.cpp index 2963dcf..01124fd 100644 --- a/kana2romaji.cpp +++ b/kana2romaji.cpp @@ -417,7 +417,6 @@ void kana2romaji(const string& kana, string& rom) { } else { - cout << "Encountered a placeholder at the beginning. Just removing it." << endl; rom.erase(pos); } } @@ -426,5 +425,7 @@ void kana2romaji(const string& kana, string& rom) { { if(pos + 1 < rom.size()) rom[pos] = rom[pos + 1]; + else + rom.erase(pos); } }