Skip to content
Snippets Groups Projects
Commit 6246b7c3 authored by Satoshi Kataoka's avatar Satoshi Kataoka Committed by Android Git Automerger
Browse files

am a94bb198: fix assertion

* commit 'a94bb198':
  fix assertion
parents be1232b3 a94bb198
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ class DicTraverseSession {
if (!mDicNodesCache.hasCachedDicNodesForContinuousSuggestion()) {
return false;
}
ASSERT(mMaxPointerCount < MAX_POINTER_COUNT_G);
ASSERT(mMaxPointerCount <= MAX_POINTER_COUNT_G);
for (int i = 0; i < mMaxPointerCount; ++i) {
const ProximityInfoState *const pInfoState = getProximityInfoState(i);
// If a proximity info state is not continuous suggestion possible,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment