aboutsummaryrefslogtreecommitdiffstats
path: root/native/jni/src/proximity_info_state.h
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2013-01-14 19:46:09 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-01-14 19:46:09 -0800
commitc995dbcf598730f138e59f989e813b83d585d40b (patch)
treeaec8a6f6d255c0fbb547d88448105c025a5e23bc /native/jni/src/proximity_info_state.h
parent722eeb144f4a0af337784ffa311217432272e19d (diff)
parent5db594abbad2d9e8d2cf1aa6e417aa50ffc5dfc1 (diff)
downloadlatinime-c995dbcf598730f138e59f989e813b83d585d40b.tar.gz
latinime-c995dbcf598730f138e59f989e813b83d585d40b.tar.xz
latinime-c995dbcf598730f138e59f989e813b83d585d40b.zip
Merge "Remove MAX_WORD_LENGTH_INTERNAL"
Diffstat (limited to 'native/jni/src/proximity_info_state.h')
-rw-r--r--native/jni/src/proximity_info_state.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/native/jni/src/proximity_info_state.h b/native/jni/src/proximity_info_state.h
index 10e74a0a3..49c33e544 100644
--- a/native/jni/src/proximity_info_state.h
+++ b/native/jni/src/proximity_info_state.h
@@ -290,10 +290,10 @@ class ProximityInfoState {
// inputs including the current input point.
std::vector<NearKeycodesSet> mSearchKeysVector;
bool mTouchPositionCorrectionEnabled;
- int mInputCodes[MAX_PROXIMITY_CHARS_SIZE_INTERNAL * MAX_WORD_LENGTH_INTERNAL];
- int mNormalizedSquaredDistances[MAX_PROXIMITY_CHARS_SIZE_INTERNAL * MAX_WORD_LENGTH_INTERNAL];
+ int mInputCodes[MAX_PROXIMITY_CHARS_SIZE_INTERNAL * MAX_WORD_LENGTH];
+ int mNormalizedSquaredDistances[MAX_PROXIMITY_CHARS_SIZE_INTERNAL * MAX_WORD_LENGTH];
int mSampledInputSize;
- int mPrimaryInputWord[MAX_WORD_LENGTH_INTERNAL];
+ int mPrimaryInputWord[MAX_WORD_LENGTH];
};
} // namespace latinime
#endif // LATINIME_PROXIMITY_INFO_STATE_H