Revert "Added support for format string containing '\0' in _format udl (#619) (#620)"

This reverts commit 3aaa25fa70 for
reasons discussed in #622.
This commit is contained in:
Victor Zverovich
2017-12-23 08:00:51 -08:00
parent 5f1c73db7d
commit 6f2769d0b4
2 changed files with 3 additions and 9 deletions
-6
View File
@@ -1469,11 +1469,6 @@ TEST(LiteralsTest, Format) {
EXPECT_EQ(format("{}c{}", "ab", 1), udl_format);
auto udl_format_w = L"{}c{}"_format(L"ab", 1);
EXPECT_EQ(format(L"{}c{}", L"ab", 1), udl_format_w);
auto udl_format_null_char = "{}c\0d{}"_format("ab", 1);
EXPECT_EQ(format("{}c\0d{}", "ab", 1), udl_format_null_char);
auto udl_format_w_null_char = L"{}c\0d{}"_format(L"ab", 1);
EXPECT_EQ(format(L"{}c\0d{}", L"ab", 1), udl_format_w_null_char);
}
TEST(LiteralsTest, NamedArg) {
@@ -1534,7 +1529,6 @@ TEST(FormatTest, CustomArgFormatter) {
TEST(FormatTest, NonNullTerminatedFormatString) {
EXPECT_EQ("42", format(string_view("{}foo", 2), 42));
EXPECT_EQ("42f\0oo", format(string_view("{}f\0oo", 6), 42));
}
struct variant {