fix assertion
Change-Id: I34ff470122aa0f34c66425d2eeae7590187d3074
This commit is contained in:
parent
b12c2af32e
commit
a94bb198cf
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ class DicTraverseSession {
|
||||||
if (!mDicNodesCache.hasCachedDicNodesForContinuousSuggestion()) {
|
if (!mDicNodesCache.hasCachedDicNodesForContinuousSuggestion()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
ASSERT(mMaxPointerCount < MAX_POINTER_COUNT_G);
|
ASSERT(mMaxPointerCount <= MAX_POINTER_COUNT_G);
|
||||||
for (int i = 0; i < mMaxPointerCount; ++i) {
|
for (int i = 0; i < mMaxPointerCount; ++i) {
|
||||||
const ProximityInfoState *const pInfoState = getProximityInfoState(i);
|
const ProximityInfoState *const pInfoState = getProximityInfoState(i);
|
||||||
// If a proximity info state is not continuous suggestion possible,
|
// If a proximity info state is not continuous suggestion possible,
|
||||||
|
|
Loading…
Reference in a new issue