Skip to content

Commit f35b22d

Browse files
committed
test/testcheck.cpp: fixed constVariablePointer selfcheck warning
1 parent 860f557 commit f35b22d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/testcheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class TestCheck : public TestFixture {
4444
}
4545

4646
void classInfoFormat() const {
47-
for (Check * const c : Check::instances()) {
47+
for (const Check * const c : Check::instances()) {
4848
const std::string info = c->classInfo();
4949
if (!info.empty()) {
5050
ASSERT('\n' != info[0]); // No \n in the beginning

0 commit comments

Comments
 (0)