diff options
Diffstat (limited to 'core/ustring.h')
-rw-r--r-- | core/ustring.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/ustring.h b/core/ustring.h index 65eeae6643..1f8a5d7e7d 100644 --- a/core/ustring.h +++ b/core/ustring.h @@ -103,7 +103,7 @@ public: _FORCE_INLINE_ Char16String() {} _FORCE_INLINE_ Char16String(const Char16String &p_str) { _cowdata._ref(p_str._cowdata); } - _FORCE_INLINE_ Char16String operator=(const Char16String &p_str) { + _FORCE_INLINE_ Char16String &operator=(const Char16String &p_str) { _cowdata._ref(p_str._cowdata); return *this; } @@ -147,7 +147,7 @@ public: _FORCE_INLINE_ CharString() {} _FORCE_INLINE_ CharString(const CharString &p_str) { _cowdata._ref(p_str._cowdata); } - _FORCE_INLINE_ CharString operator=(const CharString &p_str) { + _FORCE_INLINE_ CharString &operator=(const CharString &p_str) { _cowdata._ref(p_str._cowdata); return *this; } @@ -435,7 +435,7 @@ public: _FORCE_INLINE_ String() {} _FORCE_INLINE_ String(const String &p_str) { _cowdata._ref(p_str._cowdata); } - String operator=(const String &p_str) { + String &operator=(const String &p_str) { _cowdata._ref(p_str._cowdata); return *this; } |