summaryrefslogtreecommitdiffstats
path: root/src/parser_state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser_state.cpp')
-rw-r--r--src/parser_state.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser_state.cpp b/src/parser_state.cpp
index 94f9c93..f7b9574 100644
--- a/src/parser_state.cpp
+++ b/src/parser_state.cpp
@@ -53,7 +53,7 @@ void parser_state_t::add_rule_terminal(unsigned char term) {
}
void parser_state_t::add_rule() {
- rules.emplace(current);
+ rules.emplace_back(current);
}
}