Skip to content

Commit 4cc9142

Browse files
[FileCheckTest] Supress new warning
1 parent cc15380 commit 4cc9142

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/unittests/Support/FileCheckTest.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -796,10 +796,10 @@ TEST_F(FileCheckTest, Binop) {
796796
std::move(Binop2));
797797
ImplicitFormat = OuterBinop->getImplicitFormat(SM);
798798
expectSameErrors<ErrorDiagnostic>(
799-
{"implicit format conflict between 'FOO' (%u) and 'BAZ' (%x), "
800-
"need an explicit format specifier",
801-
"implicit format conflict between 'FOO' (%u) and 'QUUX' (%x), "
802-
"need an explicit format specifier"},
799+
{("implicit format conflict between 'FOO' (%u) and 'BAZ' (%x), need an "
800+
"explicit format specifier"),
801+
("implicit format conflict between 'FOO' (%u) and 'QUUX' (%x), need an "
802+
"explicit format specifier")},
803803
ImplicitFormat.takeError());
804804
}
805805

0 commit comments

Comments
 (0)