mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-26 18:28:20 +00:00
fix #3105 - Compile-time error when mixing named argument with automatic indexing
This commit is contained in:
parent
b0c8263cb2
commit
62ceb181b1
@ -2975,7 +2975,7 @@ class format_string_checker {
|
||||
#if FMT_USE_NONTYPE_TEMPLATE_ARGS
|
||||
auto index = get_arg_index_by_name<Args...>(id);
|
||||
if (index == invalid_arg_index) on_error("named argument is not found");
|
||||
return context_.check_arg_id(index), index;
|
||||
return index;
|
||||
#else
|
||||
(void)id;
|
||||
on_error("compile-time checks for named arguments require C++20 support");
|
||||
|
@ -1907,6 +1907,7 @@ TEST(format_test, compile_time_string) {
|
||||
EXPECT_EQ("", fmt::format(FMT_STRING("")));
|
||||
EXPECT_EQ("", fmt::format(FMT_STRING(""), "arg"_a = 42));
|
||||
EXPECT_EQ("42", fmt::format(FMT_STRING("{answer}"), "answer"_a = Answer()));
|
||||
EXPECT_EQ("1 2", fmt::format(FMT_STRING("{} {two}"), 1, "two"_a = 2));
|
||||
#endif
|
||||
|
||||
(void)static_with_null;
|
||||
|
Loading…
Reference in New Issue
Block a user