Remove all non const reference parameters

This commit is contained in:
Max Brunsfeld 2014-03-09 22:21:58 -07:00
parent a411e43484
commit 661314cf4e
20 changed files with 37 additions and 37 deletions

View file

@ -14,7 +14,7 @@ namespace tree_sitter {
size_t hash_code() const;
rule_ptr copy() const;
std::string to_string() const;
void accept(Visitor &visitor) const;
void accept(Visitor *visitor) const;
rule_ptr to_rule_tree() const;
};