mirror of
https://github.com/godotengine/godot-cpp.git
synced 2026-01-03 18:09:13 +03:00
Fixes #41
This commit is contained in:
@@ -153,7 +153,7 @@ bool String::ends_with(String &p_string) const {
|
||||
return godot_string_ends_with(&_godot_string, &p_string._godot_string);
|
||||
}
|
||||
|
||||
void String::erase(int position, int chars) const {
|
||||
void String::erase(int position, int chars) {
|
||||
godot_string_erase(&_godot_string, position, chars);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user