summaryrefslogtreecommitdiff
path: root/decoder/ff_charset.cc
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cab.ark.cs.cmu.edu>2012-08-09 01:36:36 -0400
committerChris Dyer <cdyer@cab.ark.cs.cmu.edu>2012-08-09 01:36:36 -0400
commit0ec6eab158320dc87054057a5a6aaa3536d2fc91 (patch)
tree7bfebbbeda0e770e0e20b0a28049dd707649f04f /decoder/ff_charset.cc
parent8ab7731dc55c55272300eafbde2c085b31f886d7 (diff)
fixes for new word api
Diffstat (limited to 'decoder/ff_charset.cc')
-rw-r--r--decoder/ff_charset.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/decoder/ff_charset.cc b/decoder/ff_charset.cc
index 33afc1a7..472de82b 100644
--- a/decoder/ff_charset.cc
+++ b/decoder/ff_charset.cc
@@ -7,9 +7,9 @@ using namespace std;
NonLatinCount::NonLatinCount(const string& param) : FeatureFunction(), fid_(FD::Convert("NonLatinCount")) {}
-bool ContainsNonLatin(const char* word) {
- int cur = 0;
- while(word[cur]) {
+bool ContainsNonLatin(const string& word) {
+ unsigned cur = 0;
+ while(cur < word.size()) {
const int size = UTF8Len(word[cur]);
if (size > 1) return true;
cur += size;