You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Add const references in String class
This commit is contained in:
@@ -1105,7 +1105,7 @@ String String::get_with_code_lines() const {
|
||||
return ret;
|
||||
}
|
||||
|
||||
int String::get_slice_count(String p_splitter) const {
|
||||
int String::get_slice_count(const String &p_splitter) const {
|
||||
if (is_empty()) {
|
||||
return 0;
|
||||
}
|
||||
@@ -1124,7 +1124,7 @@ int String::get_slice_count(String p_splitter) const {
|
||||
return slices;
|
||||
}
|
||||
|
||||
String String::get_slice(String p_splitter, int p_slice) const {
|
||||
String String::get_slice(const String &p_splitter, int p_slice) const {
|
||||
if (is_empty() || p_splitter.is_empty()) {
|
||||
return "";
|
||||
}
|
||||
@@ -3495,7 +3495,7 @@ bool String::matchn(const String &p_wildcard) const {
|
||||
return _wildcard_match(p_wildcard.get_data(), get_data(), false);
|
||||
}
|
||||
|
||||
String String::format(const Variant &values, String placeholder) const {
|
||||
String String::format(const Variant &values, const String &placeholder) const {
|
||||
String new_string = String(this->ptr());
|
||||
|
||||
if (values.get_type() == Variant::ARRAY) {
|
||||
@@ -5167,7 +5167,7 @@ String String::sprintf(const Array &values, bool *error) const {
|
||||
return formatted;
|
||||
}
|
||||
|
||||
String String::quote(String quotechar) const {
|
||||
String String::quote(const String "echar) const {
|
||||
return quotechar + *this + quotechar;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user