diff options
Diffstat (limited to 'native/src')
-rw-r--r-- | native/src/unigram_dictionary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/unigram_dictionary.cpp b/native/src/unigram_dictionary.cpp index 10aa7e296..6c2c89231 100644 --- a/native/src/unigram_dictionary.cpp +++ b/native/src/unigram_dictionary.cpp @@ -58,7 +58,7 @@ static inline unsigned int getCodesBufferSize(const int *codes, const int codesS return sizeof(*codes) * MAX_PROXIMITY_CHARS * codesSize; } -// TODO: This needs to take an const unsigned short* and not tinker with its contents +// TODO: This needs to take a const unsigned short* and not tinker with its contents static inline void addWord( unsigned short *word, int length, int frequency, WordsPriorityQueue *queue) { queue->push(frequency, word, length); |