Selaa lähdekoodia

fix(string): remove string custom constructors

greatbridf 2 vuotta sitten
vanhempi
commit
4eca7c8ff6
1 muutettua tiedostoa jossa 0 lisäystä ja 8 poistoa
  1. 0 8
      include/types/string.hpp

+ 0 - 8
include/types/string.hpp

@@ -27,14 +27,6 @@ public:
     {
         this->append(str, n);
     }
-    string(const string& str)
-        : inner_vector_type((const inner_vector_type&)str)
-    {
-    }
-    string(string&& str)
-        : inner_vector_type((inner_vector_type &&) move(str))
-    {
-    }
     string& append(const char* str, size_type n = npos)
     {
         this->pop_back();