diff options
author | DhruvMaroo <dhruvmaru007@gmail.com> | 2021-05-30 12:30:11 +0530 |
---|---|---|
committer | DhruvMaroo <dhruvmaru007@gmail.com> | 2021-05-30 12:30:11 +0530 |
commit | 689b5fb98b4e3e618ed3571986d9b860f00b194e (patch) | |
tree | e40b4b988a0664f5a6f05ede9e81fd4a448c6aac /include/core/String.hpp | |
parent | dfee6f0ca41863eacdd47bd3c1c4afa46cc97fa4 (diff) | |
download | redot-cpp-689b5fb98b4e3e618ed3571986d9b860f00b194e.tar.gz |
added mover constructor
Diffstat (limited to 'include/core/String.hpp')
-rw-r--r-- | include/core/String.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/core/String.hpp b/include/core/String.hpp index 7c11ac7..62b58e4 100644 --- a/include/core/String.hpp +++ b/include/core/String.hpp @@ -40,6 +40,7 @@ public: String(const wchar_t *contents); String(const wchar_t c); String(const String &other); + String(String&& other); ~String(); |