Skip to content

Commit 0a6373f

Browse files
committed
teststl.cpp: removed const to fix compilation after changes in another merge
1 parent 332720b commit 0a6373f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/teststl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class TestStl : public TestFixture {
3535
TestStl() : TestFixture("TestStl") {}
3636

3737
private:
38-
const Settings settings = settingsBuilder().severity(Severity::warning).severity(Severity::style).severity(Severity::performance).library("std.cfg").build();
38+
Settings settings = settingsBuilder().severity(Severity::warning).severity(Severity::style).severity(Severity::performance).library("std.cfg").build();
3939

4040
void run() override {
4141
TEST_CASE(outOfBounds);

0 commit comments

Comments
 (0)