Workaround clang/gcc incompatibility

This commit is contained in:
Victor Zverovich
2021-07-02 13:29:22 -07:00
parent 00a57a9f8f
commit 3e7a29cc92
5 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -507,7 +507,7 @@ void vformat_to(buffer<Char>& buf, const text_style& ts,
auto background = detail::make_background_color<Char>(ts.get_background());
buf.append(background.begin(), background.end());
}
detail::vformat_to(buf, format_str, args);
detail::vformat_to(buf, format_str, args, {});
if (has_style) detail::reset_color<Char>(buf);
}