From 9c1724988dca676620a8b6b7326bf649c65422c6 Mon Sep 17 00:00:00 2001 From: Philipp Reh Date: Sat, 21 Feb 2009 10:42:17 +0100 Subject: [PATCH] Removed unneeded warning. Remove \2 at the end. --- kana2romaji.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } -- 2.30.2