소스 검색

Fixed operator

Fixed String::operator+=(const wchar_t). The problem was that a temporary variable don't have an address.
TerraAr 5 년 전
부모
커밋
5e656923cf
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/core/String.cpp

+ 2 - 1
src/core/String.cpp

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