From e6c087fb6c631d5acf16536356ebe5a72967c9b0 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 10 Aug 2018 16:15:11 -0400 Subject: Replaced some split/implode uses with hkutil --- lib/pronunciation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/pronunciation.cpp') diff --git a/lib/pronunciation.cpp b/lib/pronunciation.cpp index fa471ec..1f36899 100644 --- a/lib/pronunciation.cpp +++ b/lib/pronunciation.cpp @@ -1,8 +1,8 @@ #include "pronunciation.h" #include +#include #include "form.h" #include "word.h" -#include "util.h" namespace verbly { @@ -27,7 +27,7 @@ namespace verbly { id_ = sqlite3_column_int(row, 0); std::string phonemesStr(reinterpret_cast(sqlite3_column_text(row, 1))); - phonemes_ = split>(phonemesStr, " "); + phonemes_ = hatkirby::split>(phonemesStr, " "); syllables_ = sqlite3_column_int(row, 2); stress_ = std::string(reinterpret_cast(sqlite3_column_text(row, 3))); -- cgit 1.4.1