mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-05 02:27:45 +00:00
Fix build, take 2.
This commit is contained in:
parent
c164cb6ecd
commit
09f40191f4
@ -1647,7 +1647,9 @@ TEST(FormatTest, PrintColored) {
|
|||||||
|
|
||||||
TEST(FormatTest, Variadic) {
|
TEST(FormatTest, Variadic) {
|
||||||
EXPECT_EQ("abc1", str(format("{}c{}", "ab", 1)));
|
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)));
|
EXPECT_EQ(L"abc1", str(Format(L"{}c{}", L"ab", 1)));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
|
Loading…
Reference in New Issue
Block a user