mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-21 19:28:27 +00:00
Fixed a clang warning about signed shifts.
Change-Id: I7c2bf87972ee0ba6811d6ed42e13300bff90e36f
This commit is contained in:
@@ -49,7 +49,8 @@ static void Error(const std::string &msg) {
|
|||||||
|
|
||||||
// Ensure that integer values we parse fit inside the declared integer type.
|
// Ensure that integer values we parse fit inside the declared integer type.
|
||||||
static void CheckBitsFit(int64_t val, size_t bits) {
|
static void CheckBitsFit(int64_t val, size_t bits) {
|
||||||
auto mask = (1ll << bits) - 1; // Bits we allow to be used.
|
// Bits we allow to be used.
|
||||||
|
auto mask = static_cast<int64_t>((1ull << bits) - 1);
|
||||||
if (bits < 64 &&
|
if (bits < 64 &&
|
||||||
(val & ~mask) != 0 && // Positive or unsigned.
|
(val & ~mask) != 0 && // Positive or unsigned.
|
||||||
(val | mask) != -1) // Negative.
|
(val | mask) != -1) // Negative.
|
||||||
|
|||||||
Reference in New Issue
Block a user