diff options
author | 2012-01-23 16:52:37 +0900 | |
---|---|---|
committer | 2012-01-25 22:30:37 +0900 | |
commit | 8330b488e9534afe8f5775ad9416c904d01bb665 (patch) | |
tree | a15199bc0aecd0a46f2a9f2e2f0aa1a491ad18d4 /native/src/words_priority_queue.h | |
parent | f9521c6f378e3f2aa13d9e382ae13708e3ae6317 (diff) | |
download | latinime-8330b488e9534afe8f5775ad9416c904d01bb665.tar.gz latinime-8330b488e9534afe8f5775ad9416c904d01bb665.tar.xz latinime-8330b488e9534afe8f5775ad9416c904d01bb665.zip |
Do other error correction for the second word of two word correction
result: I4e0b68a12190933f9
Change-Id: I98afce6fe4d5bde97392146d204370ba31a72566
Diffstat (limited to 'native/src/words_priority_queue.h')
-rw-r--r-- | native/src/words_priority_queue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/words_priority_queue.h b/native/src/words_priority_queue.h index c85f2b9b3..e8cd983b1 100644 --- a/native/src/words_priority_queue.h +++ b/native/src/words_priority_queue.h @@ -137,7 +137,7 @@ class WordsPriorityQueue { if (size() <= 0) { return; } - DUMP_WORD(mSuggestions.top()->mWord, mSuggestions.top()->mWordLength); + DUMP_WORD(mHighestSuggestedWord->mWord, mHighestSuggestedWord->mWordLength); } double getHighestNormalizedScore(const unsigned short* before, const int beforeLength, |