Remove all non const reference parameters
This commit is contained in:
parent
a411e43484
commit
661314cf4e
20 changed files with 37 additions and 37 deletions
|
|
@ -25,8 +25,8 @@ namespace tree_sitter {
|
|||
return string("#<string '") + value + "'>";
|
||||
}
|
||||
|
||||
void String::accept(Visitor &visitor) const {
|
||||
visitor.visit(this);
|
||||
void String::accept(Visitor *visitor) const {
|
||||
visitor->visit(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue