Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/testanalyzerinformation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TestAnalyzerInformation : public TestFixture {
TestAnalyzerInformation() : TestFixture("TestAnalyzerInformation") {}

private:
class AnalyzerInformationTest : public AnalyzerInformation
class AnalyzerInformationTest final : public AnalyzerInformation
{
friend class TestAnalyzerInformation;
};
Expand Down
4 changes: 2 additions & 2 deletions test/testcmdlineparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class TestCmdlineParser : public TestFixture {
{}

private:
class CmdLineLoggerTest : public CmdLineLogger
class CmdLineLoggerTest final : public CmdLineLogger
{
public:
CmdLineLoggerTest() = default;
Expand Down Expand Up @@ -91,7 +91,7 @@ class TestCmdlineParser : public TestFixture {
std::string buf;
};

class CmdLineParserTest : public CmdLineParser
class CmdLineParserTest final : public CmdLineParser
{
friend class TestCmdlineParser;
public:
Expand Down
2 changes: 1 addition & 1 deletion test/testplatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class TestPlatform : public TestFixture {
TEST_CASE(wrong_root_node);
}

class PlatformTest : public Platform
class PlatformTest final : public Platform
{
friend class TestPlatform;
};
Expand Down
4 changes: 2 additions & 2 deletions test/testsimplifytemplate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,12 +321,12 @@ class TestSimplifyTemplate : public TestFixture {
TEST_CASE(dumpTemplateArgFrom);
}

class TemplateSimplifierTest : public TemplateSimplifier
class TemplateSimplifierTest final : public TemplateSimplifier
{
friend class TestSimplifyTemplate;
};

class TokenizerTest : public Tokenizer
class TokenizerTest final : public Tokenizer
{
friend class TestSimplifyTemplate;
public:
Expand Down
2 changes: 1 addition & 1 deletion test/testsimplifytypedef.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ class TestSimplifyTypedef : public TestFixture {
TEST_CASE(typedefInfo3);
}

class TokenizerTest : public Tokenizer
class TokenizerTest final : public Tokenizer
{
friend class TestSimplifyTypedef;
public:
Expand Down
2 changes: 1 addition & 1 deletion test/testtokenize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ class TestTokenizer : public TestFixture {
TEST_CASE(simplifyEnum2);
}

class TokenizerTest : public Tokenizer
class TokenizerTest final : public Tokenizer
{
friend class TestTokenizer;
public:
Expand Down
Loading