Fix handling of code units in compile

This commit is contained in:
Victor Zverovich
2020-07-11 08:35:26 -07:00
parent ba8d98cbb7
commit e1bfb59619
3 changed files with 3 additions and 2 deletions

View File

@@ -162,5 +162,6 @@ TEST(CompileTest, FormatTo) {
TEST(CompileTest, TextAndArg) {
EXPECT_EQ(">>>42<<<", fmt::format(FMT_COMPILE(">>>{}<<<"), 42));
EXPECT_EQ("42!", fmt::format(FMT_COMPILE("{}!"), 42));
}
#endif