diff options
Diffstat (limited to 'src/core/parser/stack')
-rw-r--r-- | src/core/parser/stack/State.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/parser/stack/State.hpp b/src/core/parser/stack/State.hpp index 011ccd6..fb610cf 100644 --- a/src/core/parser/stack/State.hpp +++ b/src/core/parser/stack/State.hpp @@ -55,7 +55,8 @@ using StateSet = std::unordered_set<const State *>; * Class used for the complete specification of a State. Stores possible * parent states, state handlers and arguments to be passed to that state. */ -struct State { +class State { +public: /** * Vector containing all possible parent states. */ |