mirror of
https://github.com/shadps4-emu/ext-fmt.git
synced 2025-03-03 23:57:18 +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…
x
Reference in New Issue
Block a user