Implemented #335: custom printf support

This commit is contained in:
Glen Stark
2016-06-08 01:23:32 +02:00
committed by Victor Zverovich
parent 6ccb5673c4
commit 72d51e0b1e
9 changed files with 573 additions and 472 deletions

View File

@@ -46,7 +46,7 @@ TEST(FormatTest, ArgConverter) {
Arg arg = Arg();
arg.type = Arg::LONG_LONG;
arg.long_long_value = std::numeric_limits<fmt::LongLong>::max();
fmt::ArgConverter<fmt::LongLong>(arg, 'd').visit(arg);
fmt::internal::ArgConverter<fmt::LongLong>(arg, 'd').visit(arg);
EXPECT_EQ(Arg::LONG_LONG, arg.type);
}