mirror of
https://github.com/godotengine/godot-cpp.git
synced 2026-01-07 10:10:08 +03:00
Fix formatting of files
This commit is contained in:
committed by
Bastiaan Olij
parent
f5858ef6c6
commit
dfa526ce16
@@ -193,11 +193,11 @@ bool String::operator!=(const char32_t *p_str) const {
|
||||
}
|
||||
|
||||
const char32_t &String::operator[](int p_index) const {
|
||||
return *internal::interface->string_operator_index_const((GDNativeStringPtr) this, p_index);
|
||||
return *internal::interface->string_operator_index_const((GDNativeStringPtr)this, p_index);
|
||||
}
|
||||
|
||||
char32_t &String::operator[](int p_index) {
|
||||
return *internal::interface->string_operator_index((GDNativeStringPtr) this, p_index);
|
||||
return *internal::interface->string_operator_index((GDNativeStringPtr)this, p_index);
|
||||
}
|
||||
|
||||
bool operator==(const char *p_chr, const String &p_str) {
|
||||
|
||||
Reference in New Issue
Block a user