Remove unused parameter name

This commit is contained in:
vitaut 2015-10-28 06:23:22 -07:00
parent acfa858e3c
commit 17960dd3d3

View File

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