mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-19 20:18:49 +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) {
|
static bool fits_in_int(T value) {
|
||||||
return value >= INT_MIN && value <= INT_MAX;
|
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";
|
const char RESET_COLOR[] = "\x1b[0m";
|
||||||
|
Loading…
Reference in New Issue
Block a user