Skip to content

Commit

Permalink
Tokenizer: cleaned up friend declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Apr 6, 2024
1 parent 43e9b3b commit 645c8e1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/tokenize.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,13 @@ enum class Severity;
/** @brief The main purpose is to tokenize the source code. It also has functions that simplify the token list */
class CPPCHECKLIB Tokenizer {

friend class TestSimplifyTokens;
friend class TestSimplifyTypedef;
friend class TestSimplifyUsing;
friend class TestTokenizer;
friend class SymbolDatabase;
friend class TestSimplifyTemplate;
friend class TemplateSimplifier;

friend class TestSimplifyTemplate;
friend class TestSimplifyTypedef;
friend class TestTokenizer;

public:
explicit Tokenizer(const Settings & settings, ErrorLogger *errorLogger, const Preprocessor *preprocessor = nullptr);
~Tokenizer();
Expand Down

0 comments on commit 645c8e1

Please sign in to comment.