|
@@ -97,6 +97,10 @@ public:
|
|
|
|
|
|
_FORCE_INLINE_ CharString() {}
|
|
|
_FORCE_INLINE_ CharString(const CharString &p_str) { _cowdata._ref(p_str._cowdata); }
|
|
|
+ _FORCE_INLINE_ CharString operator=(const CharString &p_str) {
|
|
|
+ _cowdata._ref(p_str._cowdata);
|
|
|
+ return *this;
|
|
|
+ }
|
|
|
|
|
|
bool operator<(const CharString &p_right) const;
|
|
|
CharString &operator+=(char p_char);
|
|
@@ -339,6 +343,10 @@ public:
|
|
|
|
|
|
_FORCE_INLINE_ String() {}
|
|
|
_FORCE_INLINE_ String(const String &p_str) { _cowdata._ref(p_str._cowdata); }
|
|
|
+ String operator=(const String &p_str) {
|
|
|
+ _cowdata._ref(p_str._cowdata);
|
|
|
+ return *this;
|
|
|
+ }
|
|
|
|
|
|
String(const char *p_str);
|
|
|
String(const CharType *p_str, int p_clip_to_len = -1);
|