fix incorrect indexing mode for named args, update tests

This commit is contained in:
Alexey Ochapov
2021-02-16 07:16:57 +03:00
committed by Victor Zverovich
parent 78c67157c1
commit 499047e132
2 changed files with 9 additions and 16 deletions

View File

@@ -668,11 +668,8 @@ constexpr auto compile_format_string(S format_str) {
format_str);
}
} else if constexpr (arg_id_result.arg_id.kind == arg_id_kind::name) {
static_assert(
ID != manual_indexing_id,
"cannot switch from manual to automatic argument indexing");
if constexpr (c == '}') {
return parse_tail<Args, arg_id_end_pos + 1, ID + 1>(
return parse_tail<Args, arg_id_end_pos + 1, ID>(
runtime_named_field<char_type>{arg_id_result.arg_id.val.name},
format_str);
} else if constexpr (c == ':') {