aboutsummaryrefslogtreecommitdiffstats
path: root/native/jni/src/suggest/policyimpl/dictionary/utils/entry_counters.h
diff options
context:
space:
mode:
authorKeisuke Kuroyanagi <ksk@google.com>2014-12-03 03:43:49 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-12-03 03:43:50 +0000
commitb0063751fc05b5466934c5e63fa5f3f2fc65429e (patch)
tree2d889129abb3742d66f94c47195a92b8eda80d5f /native/jni/src/suggest/policyimpl/dictionary/utils/entry_counters.h
parente79d504cf521e6dd516f0d15eb29f9e61be3e85d (diff)
parent60021bbdc25b7cda864fb3d1bf47d4f0e977e7f9 (diff)
downloadlatinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.tar.gz
latinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.tar.xz
latinime-b0063751fc05b5466934c5e63fa5f3f2fc65429e.zip
Merge "Enable Quadgram for personalized dicts."
Diffstat (limited to 'native/jni/src/suggest/policyimpl/dictionary/utils/entry_counters.h')
-rw-r--r--native/jni/src/suggest/policyimpl/dictionary/utils/entry_counters.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/jni/src/suggest/policyimpl/dictionary/utils/entry_counters.h b/native/jni/src/suggest/policyimpl/dictionary/utils/entry_counters.h
index 7269913e8..5e443026e 100644
--- a/native/jni/src/suggest/policyimpl/dictionary/utils/entry_counters.h
+++ b/native/jni/src/suggest/policyimpl/dictionary/utils/entry_counters.h
@@ -27,7 +27,7 @@ namespace latinime {
// Copyable but immutable
class EntryCounts final {
public:
- EntryCounts() : mEntryCounts({{0, 0, 0}}) {}
+ EntryCounts() : mEntryCounts({{0, 0, 0, 0}}) {}
explicit EntryCounts(const std::array<int, MAX_PREV_WORD_COUNT_FOR_N_GRAM + 1> &counters)
: mEntryCounts(counters) {}