|
} while (startChar > -1); |
The result of this comparison is always true, since startChar is uint16
It raises a warning in clang
EmotiBitPacket.cpp:380:21: warning: result of comparison of constant -1 with expression of type 'uint16_t' (aka 'unsigned short') is always true [-Wtautological-constant-out-of-range-compare]
EmotiBit_XPlat_Utils/src/EmotiBitPacket.cpp
Line 380 in d884611
The result of this comparison is always true, since startChar is uint16
It raises a warning in clang