Remove unnecessary public START and END constants

This commit is contained in:
Max Brunsfeld 2014-01-25 20:47:08 -08:00
parent 5eb5b61c14
commit 3ca2e126be
7 changed files with 8 additions and 13 deletions

View file

@ -73,7 +73,4 @@ namespace tree_sitter {
void ParseTable::add_default_action(size_t state_index, ParseAction action) {
states[state_index].default_actions.insert(action);
}
const string ParseTable::START = "__START__";
const string ParseTable::END_OF_INPUT = "__END__";
}