Merge "Fixed inline initialization of non-integral static const member"
commit
dbe3ac4500
|
@ -35,6 +35,8 @@ inline void copyOrFillZero(void *to, const void *from, size_t size) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const float ProximityInfo::NOT_A_DISTANCE_FLOAT = -1.0f;
|
||||||
|
|
||||||
ProximityInfo::ProximityInfo(const std::string localeStr, const int maxProximityCharsSize,
|
ProximityInfo::ProximityInfo(const std::string localeStr, const int maxProximityCharsSize,
|
||||||
const int keyboardWidth, const int keyboardHeight, const int gridWidth,
|
const int keyboardWidth, const int keyboardHeight, const int gridWidth,
|
||||||
const int gridHeight, const int mostCommonKeyWidth,
|
const int gridHeight, const int mostCommonKeyWidth,
|
||||||
|
|
|
@ -77,7 +77,7 @@ class ProximityInfo {
|
||||||
static const int MAX_KEY_COUNT_IN_A_KEYBOARD = 64;
|
static const int MAX_KEY_COUNT_IN_A_KEYBOARD = 64;
|
||||||
// The upper limit of the char code in mCodeToKeyIndex
|
// The upper limit of the char code in mCodeToKeyIndex
|
||||||
static const int MAX_CHAR_CODE = 127;
|
static const int MAX_CHAR_CODE = 127;
|
||||||
static const float NOT_A_DISTANCE_FLOAT = -1.0f;
|
static const float NOT_A_DISTANCE_FLOAT;
|
||||||
static const int NOT_A_CODE = -1;
|
static const int NOT_A_CODE = -1;
|
||||||
|
|
||||||
int getStartIndexFromCoordinates(const int x, const int y) const;
|
int getStartIndexFromCoordinates(const int x, const int y) const;
|
||||||
|
|
Loading…
Reference in New Issue