Patch fix for #1210

This commit is contained in:
Calvin Rose 2023-07-01 10:34:11 -05:00
parent d91c95bf92
commit ebb6fe5be3
1 changed files with 1 additions and 1 deletions

View File

@ -580,7 +580,7 @@ DIVMETHODINVERT(uint64_t, u64, mod, %)
OPMETHOD(uint64_t, u64, and, &)
OPMETHOD(uint64_t, u64, or, |)
OPMETHOD(uint64_t, u64, xor, ^)
UNARYMETHOD(int64_t, u64, not, ~)
UNARYMETHOD(uint64_t, u64, not, ~)
OPMETHOD(uint64_t, u64, lshift, <<)
OPMETHOD(uint64_t, u64, rshift, >>)