Fix formatting of files

This commit is contained in:
George Marques
2021-09-08 15:11:12 -03:00
committed by Bastiaan Olij
parent f5858ef6c6
commit dfa526ce16
35 changed files with 1018 additions and 28 deletions

View File

@@ -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) {