diff --git a/format.cc b/format.cc index ab22f909..262eda7e 100644 --- a/format.cc +++ b/format.cc @@ -142,7 +142,7 @@ struct IntChecker { static bool fits_in_int(T value) { return value >= INT_MIN && value <= INT_MAX; } - static bool fits_in_int(int value) { return true; } + static bool fits_in_int(int) { return true; } }; const char RESET_COLOR[] = "\x1b[0m";