You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Add const lvalue ref to core/* container parameters
This commit is contained in:
@@ -307,7 +307,7 @@ void CSharpLanguage::get_reserved_words(List<String> *p_words) const {
|
||||
}
|
||||
}
|
||||
|
||||
bool CSharpLanguage::is_control_flow_keyword(String p_keyword) const {
|
||||
bool CSharpLanguage::is_control_flow_keyword(const String &p_keyword) const {
|
||||
return p_keyword == "break" ||
|
||||
p_keyword == "case" ||
|
||||
p_keyword == "catch" ||
|
||||
|
||||
Reference in New Issue
Block a user