From 43b7baf5c6880cf7c46fea1f409dd65fa075fd2b Mon Sep 17 00:00:00 2001 From: Barry Revzin Date: Fri, 24 Dec 2021 16:01:42 -0600 Subject: [PATCH] How... about now --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 94e0594e..912c861f 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -1600,7 +1600,7 @@ inline auto find_escape(const char* begin, const char* end) template auto write_escaped_string(OutputIt out, basic_string_view str, - Char bracket = '"') -> OutputIt { + Char bracket = Char('"')) -> OutputIt { *out++ = bracket; auto begin = str.begin(), end = str.end(); do {