mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix warnings seen with -Wignored-qualifiers.
This commit is contained in:
parent
a01dca79e2
commit
c11e7ffd0e
6 changed files with 10 additions and 12 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue