summaryrefslogtreecommitdiff
path: root/kana2romaji.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kana2romaji.cpp')
-rw-r--r--kana2romaji.cpp3
1 files changed, 2 insertions, 1 deletions
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);
}
}