Skip to content

Commit 14c2c0f

Browse files
Apply suggestion from @HazardyKnusperkeks
Co-authored-by: Björn Schäpers <[email protected]>
1 parent 2c8e4b7 commit 14c2c0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/unittests/Format/QualifierFixerTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1206,14 +1206,14 @@ TEST_F(QualifierFixerTest, QualifierOrderingAfterPreprocessorDirectives) {
12061206
"#endif\n"
12071207
"\n"
12081208
"const int var2;\n"
1209-
"const int var3;\n",
1209+
"const int var3;",
12101210
"#if 1\n"
12111211
"void foo(int const par);\n"
12121212
"int const var1;\n"
12131213
"#endif\n"
12141214
"\n"
12151215
"int const var2;\n"
1216-
"int const var3;\n",
1216+
"int const var3;",
12171217
Style);
12181218
verifyFormat("#if defined(FOO)\n"
12191219
"static const int x = 1;\n"

0 commit comments

Comments
 (0)