瀏覽代碼

Updated operator

I've updated the operator that I had created to use the private constructor of the class.
TerraAr 5 年之前
父節點
當前提交
7d347edb12
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/core/String.cpp

+ 2 - 2
src/core/String.cpp

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