summary refs log tree commit diff stats
path: root/lib/form.cpp
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-01-24 21:55:56 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-01-24 21:55:56 -0500
commit6ba8989bbbd497f949a3e8b17abed1d0bd048347 (patch)
treeda287be3a2a130c193bdee880dbb93dbedb05455 /lib/form.cpp
parente1fa4a088dd95caef22045f905a9d5d22b71bef0 (diff)
downloadverbly-6ba8989bbbd497f949a3e8b17abed1d0bd048347.tar.gz
verbly-6ba8989bbbd497f949a3e8b17abed1d0bd048347.tar.bz2
verbly-6ba8989bbbd497f949a3e8b17abed1d0bd048347.zip
Removed some debug output
Diffstat (limited to 'lib/form.cpp')
-rw-r--r--lib/form.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/form.cpp b/lib/form.cpp index ef9703a..5d4c343 100644 --- a/lib/form.cpp +++ b/lib/form.cpp
@@ -66,7 +66,6 @@ namespace verbly {
66 if (!pronunciations.empty()) 66 if (!pronunciations.empty())
67 { 67 {
68 return std::any_of(std::begin(pronunciations), std::end(pronunciations), [] (const verbly::pronunciation& p) { 68 return std::any_of(std::begin(pronunciations), std::end(pronunciations), [] (const verbly::pronunciation& p) {
69 std::cout << "phonemes: " << implode(std::begin(p.getPhonemes()), std::end(p.getPhonemes()), ",") << std::endl;
70 return p.getPhonemes().front().find_first_of("012") != std::string::npos; 69 return p.getPhonemes().front().find_first_of("012") != std::string::npos;
71 }); 70 });
72 } else { 71 } else {