diff options
author | 2012-01-16 00:20:06 -0800 | |
---|---|---|
committer | 2012-01-16 00:20:06 -0800 | |
commit | 53c4248c6f33891ec76cd0f5054c00eea2f7957c (patch) | |
tree | b75b4042868fc705a056854d4b33fa9bad533c74 /native/src/correction.h | |
parent | 65b489cd76e8ae4898bf4788c013f245487cb1d7 (diff) | |
parent | 67e13976b78619ec7bc45b5377a9f5da2534cfd5 (diff) | |
download | latinime-53c4248c6f33891ec76cd0f5054c00eea2f7957c.tar.gz latinime-53c4248c6f33891ec76cd0f5054c00eea2f7957c.tar.xz latinime-53c4248c6f33891ec76cd0f5054c00eea2f7957c.zip |
am 67e13976: Merge "Store suggestions for each input length for missing space algorithm etc."
* commit '67e13976b78619ec7bc45b5377a9f5da2534cfd5':
Store suggestions for each input length for missing space algorithm etc.
Diffstat (limited to 'native/src/correction.h')
-rw-r--r-- | native/src/correction.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/native/src/correction.h b/native/src/correction.h index 4012e7e82..a0fd55fd9 100644 --- a/native/src/correction.h +++ b/native/src/correction.h @@ -48,7 +48,6 @@ class Correction { void checkState(); bool initProcessState(const int index); - int getOutputIndex(); int getInputIndex(); virtual ~Correction(); @@ -115,11 +114,11 @@ class Correction { private: inline void incrementInputIndex(); inline void incrementOutputIndex(); - inline bool needsToTraverseAllNodes(); inline void startToTraverseAllNodes(); inline bool isQuote(const unsigned short c); inline CorrectionType processSkipChar( const int32_t c, const bool isTerminal, const bool inputIndexIncremented); + inline CorrectionType processUnrelatedCorrectionType(); inline void addCharToCurrentWord(const int32_t c); const int TYPED_LETTER_MULTIPLIER; |