@@ -140,7 +140,7 @@ template <>
struct IntChecker<true> {
template <typename T>
static bool fits_in_int(T value) {
return value >= INT_MIN && value <= INT_MAX;
return internal::check(value >= INT_MIN) && value <= INT_MAX;
}
};
The note is not visible to the blocked user.