Skip to content

Commit 33449ad

Browse files
committed
Fix
1 parent 9679425 commit 33449ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/testunusedfunctions.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -502,8 +502,8 @@ class TestUnusedFunctions : public TestFixture {
502502
check("extern \"C\" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t dataSize) { return 0; }\n");
503503
ASSERT_EQUALS("", errout_str());
504504

505-
check("[[maybe_unused]] void f() {}\n"); // #13268
506-
"__attribute__((unused)) void g() {}\n";
505+
check("[[maybe_unused]] void f() {}\n" // #13268
506+
"__attribute__((unused)) void g() {}\n");
507507
ASSERT_EQUALS("", errout_str());
508508
}
509509

0 commit comments

Comments
 (0)