From a1ba843f3668ed53a25f5eb7866d882552028d53 Mon Sep 17 00:00:00 2001 From: TerraAr <37753757+TerraAr@users.noreply.github.com> Date: Fri, 14 Aug 2020 21:42:10 -0300 Subject: [PATCH] Created operator. Created String::operator+=(const wchar_t), that was mark as Todo. --- src/core/String.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/String.cpp b/src/core/String.cpp index 7340b6d6..65d210fe 100644 --- a/src/core/String.cpp +++ b/src/core/String.cpp @@ -135,7 +135,7 @@ void String::operator+=(const String &s) { } 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 {