Created operator.

Created String::operator+=(const wchar_t), that was mark as Todo.
pull/440/head
TerraAr 2020-08-14 21:42:10 -03:00 committed by GitHub
parent 36e0acb0d4
commit a1ba843f36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ void String::operator+=(const String &s) {
} }
void String::operator+=(const wchar_t c) { void String::operator+=(const wchar_t c) {
// @Todo _godot_string = godot::api->godot_string_operator_plus(&_godot_string, &(String(c)._godot_string));
} }
bool String::operator<(const String &s) const { bool String::operator<(const String &s) const {