When you read type->is_integer()
in code, you expect that it's checking whether or not the type is an integer type. In particular, you would expect it to return true for uint64_t
which it doesn't. This little MR attempts to fix the confusion.
Due to an influx of spam, we have had to impose restrictions on new accounts. Please see this wiki page for instructions on how to get full permissions. Sorry for the inconvenience.
When you read type->is_integer()
in code, you expect that it's checking whether or not the type is an integer type. In particular, you would expect it to return true for uint64_t
which it doesn't. This little MR attempts to fix the confusion.