You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Fix warnings seen with -Wignored-qualifiers.
This commit is contained in:
@@ -2393,7 +2393,7 @@ int String::find(const char *p_str, int p_from) const {
|
||||
return -1;
|
||||
}
|
||||
|
||||
int String::find_char(CharType p_char, int p_from) const {
|
||||
int String::find_char(const CharType &p_char, int p_from) const {
|
||||
return _cowdata.find(p_char, p_from);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user