Skip to content

Commit eb958f6

Browse files
committed
testcppcheck.cpp: fixed functionConst selfcheck warnings
1 parent 93a1ffd commit eb958f6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/testcppcheck.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -238,15 +238,15 @@ class TestCppcheck : public TestFixture {
238238
}
239239
}
240240

241-
void checkWithFile() {
241+
void checkWithFile() const {
242242
checkWithFileInternal(false);
243243
}
244244

245-
void checkWithFileWithTools() {
245+
void checkWithFileWithTools() const {
246246
checkWithFileInternal(true);
247247
}
248248

249-
void checkWithFileWithToolsNoCommand() {
249+
void checkWithFileWithToolsNoCommand() const {
250250
checkWithFileInternal(true, true);
251251
}
252252

@@ -323,15 +323,15 @@ class TestCppcheck : public TestFixture {
323323
}
324324
}
325325

326-
void checkWithFS() {
326+
void checkWithFS() const {
327327
checkWithFSInternal(false);
328328
}
329329

330-
void checkWithFSWithTools() {
330+
void checkWithFSWithTools() const {
331331
checkWithFSInternal(true);
332332
}
333333

334-
void checkWithFSWithToolsNoCommand() {
334+
void checkWithFSWithToolsNoCommand() const {
335335
checkWithFSInternal(true, true);
336336
}
337337

0 commit comments

Comments
 (0)