diff options
author | 2012-02-02 18:49:22 +0900 | |
---|---|---|
committer | 2012-02-03 20:00:15 +0900 | |
commit | 1b9fa942b4b62a818e45655dc5097c7eed7a5465 (patch) | |
tree | 1712460d82096fddb7be6093900198293983789d /native/src/correction_state.h | |
parent | 534faf1cd0b3e99a4633217f34dd9f683cd65e35 (diff) | |
download | latinime-1b9fa942b4b62a818e45655dc5097c7eed7a5465.tar.gz latinime-1b9fa942b4b62a818e45655dc5097c7eed7a5465.tar.xz latinime-1b9fa942b4b62a818e45655dc5097c7eed7a5465.zip |
Support correction conversion from skip to additional proximity
Result: I34bedff6149a6a4e01
Change-Id: I46d528f228a969a0a996299221622627f43c55ec
Diffstat (limited to 'native/src/correction_state.h')
-rw-r--r-- | native/src/correction_state.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/correction_state.h b/native/src/correction_state.h index c04146e54..5b2cbd3a2 100644 --- a/native/src/correction_state.h +++ b/native/src/correction_state.h @@ -47,9 +47,9 @@ struct CorrectionState { bool mExceeding; bool mSkipping; bool mProximityMatching; + bool mAdditionalProximityMatching; bool mNeedsToTraverseAllNodes; - }; inline static void initCorrectionState(CorrectionState *state, const int rootPos, @@ -77,7 +77,7 @@ inline static void initCorrectionState(CorrectionState *state, const int rootPos state->mTransposing = false; state->mExceeding = false; state->mSkipping = false; - + state->mAdditionalProximityMatching = false; } } // namespace latinime |