From 7db96e267bc1df414a974212436ec22c583eb169 Mon Sep 17 00:00:00 2001 From: vsol Date: Tue, 12 May 2020 18:46:49 +0300 Subject: [PATCH] fix a typo in static assert message --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 7b396304..ad58aa94 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -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); }