mirror of
https://github.com/fmtlib/fmt.git
synced 2025-04-03 07:20:51 +00:00
Remove unused parameter name
This commit is contained in:
parent
acfa858e3c
commit
17960dd3d3
@ -142,7 +142,7 @@ struct IntChecker<true> {
|
||||
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";
|
||||
|
Loading…
x
Reference in New Issue
Block a user