diff options
author | 2013-01-08 22:47:11 -0800 | |
---|---|---|
committer | 2013-01-08 22:47:12 -0800 | |
commit | 8f5f79d7ea824752dcaa4e035e71291e7dd7ddaf (patch) | |
tree | 564facda9041d6f72b335cb460fcbaeee5fdf648 /native/jni/src/correction.cpp | |
parent | dd4d938e6990701176c658af5c593ea377973bef (diff) | |
parent | ccebd5cefe0b6b17676edd8639f62bb708a7dd2e (diff) | |
download | latinime-8f5f79d7ea824752dcaa4e035e71291e7dd7ddaf.tar.gz latinime-8f5f79d7ea824752dcaa4e035e71291e7dd7ddaf.tar.xz latinime-8f5f79d7ea824752dcaa4e035e71291e7dd7ddaf.zip |
Merge "Replace assert() with ASSERT() & use -funwind-tables for debug builds"
Diffstat (limited to 'native/jni/src/correction.cpp')
-rw-r--r-- | native/jni/src/correction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/jni/src/correction.cpp b/native/jni/src/correction.cpp index 24221c98c..a0256ee40 100644 --- a/native/jni/src/correction.cpp +++ b/native/jni/src/correction.cpp @@ -247,7 +247,7 @@ Correction::CorrectionType Correction::processCharAndCalcState(const int c, cons if (mSkippedCount == 0 && mSkipPos < mOutputIndex) { if (DEBUG_DICT) { // TODO: Enable this assertion. - //assert(mSkipPos == mOutputIndex - 1); + //ASSERT(mSkipPos == mOutputIndex - 1); } mSkipPos = mOutputIndex; } |