How... about now

This commit is contained in:
Barry Revzin 2021-12-24 16:01:42 -06:00
parent 2b2fa8b825
commit 43b7baf5c6

View File

@ -1600,7 +1600,7 @@ inline auto find_escape(const char* begin, const char* end)
template <typename Char, typename OutputIt>
auto write_escaped_string(OutputIt out, basic_string_view<Char> str,
Char bracket = '"') -> OutputIt {
Char bracket = Char('"')) -> OutputIt {
*out++ = bracket;
auto begin = str.begin(), end = str.end();
do {