mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 03:17:53 +00:00
Fix a recent regression in handling max packed arguments
This commit is contained in:
parent
8a11148f99
commit
3f79357ef0
@ -1578,7 +1578,7 @@ template <typename Context> class basic_format_args {
|
||||
if (index < max_size()) arg = args_[index];
|
||||
return arg;
|
||||
}
|
||||
if (index > internal::max_packed_args) return arg;
|
||||
if (index >= internal::max_packed_args) return arg;
|
||||
arg.type_ = type(index);
|
||||
if (arg.type_ == internal::type::none_type) return arg;
|
||||
arg.value_ = values_[index];
|
||||
|
Loading…
Reference in New Issue
Block a user