Fix build, take 2.

This commit is contained in:
Victor Zverovich 2014-06-28 14:57:06 -07:00
parent c164cb6ecd
commit 09f40191f4

View File

@ -1647,7 +1647,9 @@ TEST(FormatTest, PrintColored) {
TEST(FormatTest, Variadic) {
EXPECT_EQ("abc1", str(format("{}c{}", "ab", 1)));
#if FMT_USE_VARIADIC_TEMPLATES && FMT_USE_RVALUE_REFERENCES
EXPECT_EQ(L"abc1", str(Format(L"{}c{}", L"ab", 1)));
#endif
}
template <typename T>