mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-19 20:18:49 +00:00
Fix MSVC warning
This commit is contained in:
parent
f3bef7ac92
commit
4f7ad14c2b
2
format.h
2
format.h
@ -1145,7 +1145,7 @@ class ArgVisitor {
|
||||
case Arg::ULONG_LONG:
|
||||
return FMT_DISPATCH(visit_ulong_long(arg.ulong_long_value));
|
||||
case Arg::BOOL:
|
||||
return FMT_DISPATCH(visit_bool(arg.int_value));
|
||||
return FMT_DISPATCH(visit_bool(arg.int_value != 0));
|
||||
case Arg::CHAR:
|
||||
return FMT_DISPATCH(visit_char(arg.int_value));
|
||||
case Arg::DOUBLE:
|
||||
|
Loading…
Reference in New Issue
Block a user