mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-13 06:30:06 +00:00
Remove extra parentheses
This commit is contained in:
parent
001054c8a0
commit
f44666aac6
2
format.h
2
format.h
@ -2677,7 +2677,7 @@ struct ArgArraySize {
|
||||
Value array[internal::ArgArraySize<sizeof...(Args)>::VALUE] = { \
|
||||
internal::MakeValue<Char>(args)... \
|
||||
}; \
|
||||
if (internal::check((sizeof...(Args) > fmt::ArgList::MAX_PACKED_ARGS))) \
|
||||
if (internal::check(sizeof...(Args) > fmt::ArgList::MAX_PACKED_ARGS)) \
|
||||
set_types(array, args...); \
|
||||
call(FMT_FOR_EACH(FMT_GET_ARG_NAME, __VA_ARGS__), \
|
||||
fmt::ArgList(internal::make_type(args...), array)); \
|
||||
|
Loading…
Reference in New Issue
Block a user