Suppress a bogus coverity warning

This commit is contained in:
vitaut
2015-10-21 08:30:10 -07:00
parent 13e0e38d99
commit ab25cd2c8b
3 changed files with 6 additions and 4 deletions

View File

@@ -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;
}
};