removed temporary from VSPrintfMakeArgsExample and VSPrintfMakeWArgsExample again

storing the value in a temporary causes even more failures
This commit is contained in:
Thomas Novotny 2018-11-20 22:55:32 +01:00
parent 15eae7cbfa
commit 018f654476

View File

@ -521,14 +521,14 @@ TEST(PrintfTest, CheckFormatStringRegression) {
TEST(PrintfTest, VSPrintfMakeArgsExample) {
fmt::printf_args args = fmt::make_printf_args( 42, "something");
EXPECT_EQ("[42] something happened",
fmt::vsprintf( "[%d] %s happened", args));
fmt::vsprintf(
"[%d] %s happened", fmt::make_printf_args( 42, "something" ) ) );
}
TEST( PrintfTest, VSPrintfMakeWArgsExample ) {
fmt::wprintf_args args = fmt::make_wprintf_args(42, L"something");
EXPECT_EQ(L"[42] something happened",
fmt::vsprintf(L"[%d] %s happened", args));
fmt::vsprintf(
L"[%d] %s happened", fmt::make_wprintf_args( 42, L"something" ) ) );
}