Remove printf_arg_formatter from format.h and cleanup

This commit is contained in:
Victor Zverovich
2017-09-04 12:28:53 -07:00
parent 44a26e5e21
commit af00e4f9c9
3 changed files with 13 additions and 37 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ TEST(PrintfTest, ZeroFlag) {
EXPECT_PRINTF("+00042", "%00+6d", 42);
// '0' flag is ignored for non-numeric types.
EXPECT_PRINTF(" x", "%05c", 'x');
EXPECT_PRINTF("0000x", "%05c", 'x');
}
TEST(PrintfTest, PlusFlag) {