We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6be6fe commit 1c156a3Copy full SHA for 1c156a3
include/fmt/base.h
@@ -1062,9 +1062,7 @@ template <typename... Args> constexpr auto count_static_named_args() -> int {
1062
template <typename Char> struct named_arg_info {
1063
FMT_CONSTEXPR named_arg_info() : name(nullptr), id(0) {}
1064
FMT_CONSTEXPR named_arg_info(const Char* a_name, const int an_id)
1065
- : name(a_name),
1066
- id(an_id) {
1067
- }
+ : name(a_name), id(an_id) {}
1068
const Char* name;
1069
int id;
1070
};
0 commit comments