Skip to content

Commit

Permalink
Reversed const data members
Browse files Browse the repository at this point in the history
  • Loading branch information
vylion committed Mar 26, 2024
1 parent 9834b53 commit 6e10537
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions headers/Grammar.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class Grammar {
std::vector<char> getCompiledBytes() const;

private:
const GrammarType type;
const std::string content;
GrammarType type;
std::string content;
std::vector<char> compiledBytes;
};

Expand Down

0 comments on commit 6e10537

Please sign in to comment.