Skip to content

Commit 6d8013f

Browse files
committed
testpreprocessor.cpp: fixed -Wunused-variable compiler warning
1 parent 60f3913 commit 6d8013f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/testpreprocessor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2575,7 +2575,7 @@ class TestPreprocessor : public TestFixture {
25752575
ScopedFile header("header.h", "", "system");
25762576

25772577
const char code[] = "#include <header.h>";
2578-
(void)getcodeforcfg(settings0, *this, code, "", "test.c");
2578+
(void)getcodeforcfg(settings, *this, code, "", "test.c");
25792579

25802580
ASSERT_EQUALS("", errout_str());
25812581
}

0 commit comments

Comments
 (0)