Fix handling of empty string_view (#689)

This commit is contained in:
Victor Zverovich
2018-03-21 09:01:51 -07:00
parent a24005d5fd
commit 8c29459eda
2 changed files with 5 additions and 5 deletions
+2 -1
View File
@@ -1196,7 +1196,8 @@ TEST(FormatterTest, FormatString) {
}
TEST(FormatterTest, FormatStringView) {
EXPECT_EQ("test", format("{0}", string_view("test")));
EXPECT_EQ("test", format("{}", string_view("test")));
EXPECT_EQ("", format("{}", string_view()));
}
#ifdef FMT_USE_STD_STRING_VIEW