fix msvc warning about 64-bit shift

develop
Ben Lubar 2020-02-15 18:18:30 -06:00
parent d0de7865d3
commit 0f857f1b20
No known key found for this signature in database
GPG Key ID: 92939677AB59EDA4
1 changed files with 1 additions and 1 deletions

@ -670,7 +670,7 @@ void Checker::check_bitfield(const ToCheck & item)
if (bits[i].name)
continue;
if (!(val & (1 << i)))
if (!(val & (1ULL << i)))
continue;
if (bits[i].size)