diff options
author | 2011-03-19 09:16:42 +0900 | |
---|---|---|
committer | 2011-03-19 10:12:15 +0900 | |
commit | de3070a71b39742c3ac7b613f45af88cc95c1205 (patch) | |
tree | b64b9eb727186b73ee5878af76dce731f7419d10 /native/src/proximity_info.h | |
parent | 0a7cf81ca297f511e0d0d2478a792014d0b62945 (diff) | |
download | latinime-de3070a71b39742c3ac7b613f45af88cc95c1205.tar.gz latinime-de3070a71b39742c3ac7b613f45af88cc95c1205.tar.xz latinime-de3070a71b39742c3ac7b613f45af88cc95c1205.zip |
Add -Werror flag to catch more warnings and errors
Change-Id: I9c39ba24578931944aae8182918ed48a2e82eb39
Diffstat (limited to 'native/src/proximity_info.h')
-rw-r--r-- | native/src/proximity_info.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/native/src/proximity_info.h b/native/src/proximity_info.h index 0f1201866..c2062e8c5 100644 --- a/native/src/proximity_info.h +++ b/native/src/proximity_info.h @@ -32,13 +32,13 @@ public: bool hasSpaceProximity(const int x, const int y) const; private: int getStartIndexFromCoordinates(const int x, const int y) const; - const int CELL_WIDTH; - const int CELL_HEIGHT; + const int MAX_PROXIMITY_CHARS_SIZE; const int KEYBOARD_WIDTH; const int KEYBOARD_HEIGHT; const int GRID_WIDTH; const int GRID_HEIGHT; - const int MAX_PROXIMITY_CHARS_SIZE; + const int CELL_WIDTH; + const int CELL_HEIGHT; uint32_t *mProximityCharsArray; }; }; // namespace latinime |