fix a typo in static assert message

This commit is contained in:
vsol 2020-05-12 18:46:49 +03:00
parent da2b65e216
commit 7db96e267b

View File

@ -1586,7 +1586,7 @@ class dynamic_format_arg_store
*/
void reserve(size_t new_cap, size_t new_cap_named) {
FMT_ASSERT(new_cap >= new_cap_named,
"Set of argument includes set of named arguments");
"Set of arguments includes set of named arguments");
data_.reserve(new_cap);
named_info_.reserve(new_cap_named);
}