summaryrefslogtreecommitdiff
path: root/core/string
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-11-09 17:46:03 +0100
committerRémi Verschelde <rverschelde@gmail.com>2020-11-09 23:39:53 +0100
commit0f249f5c0aa2c3a89848f03f155b76e834e4c32a (patch)
tree4fa6ebf28401601e03b0ce2b387f60c32b771fb5 /core/string
parentefc4d217d61f592a16ebab30731ff9f595dee2cf (diff)
Variant: Sync docs with new constructors, fixups after #43403
Change DocData comparators for MethodDoc and ArgumentDoc to get a better ordering of constructors.
Diffstat (limited to 'core/string')
-rw-r--r--core/string/ustring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/string/ustring.h b/core/string/ustring.h
index 35475a2124..201b439b12 100644
--- a/core/string/ustring.h
+++ b/core/string/ustring.h
@@ -433,10 +433,10 @@ public:
/**
* The constructors must not depend on other overloads
*/
- /* String(char32_t p_char);*/
_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;