diff options
Diffstat (limited to 'sources/shiboken6/tests/libsample/str.cpp')
-rw-r--r-- | sources/shiboken6/tests/libsample/str.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sources/shiboken6/tests/libsample/str.cpp b/sources/shiboken6/tests/libsample/str.cpp index f8d1b726f..dd7909bef 100644 --- a/sources/shiboken6/tests/libsample/str.cpp +++ b/sources/shiboken6/tests/libsample/str.cpp @@ -9,11 +9,6 @@ using namespace std; -Str::Str(const Str& s) -{ - init(s.cstring()); -} - Str::Str(char c) { char str[2] = { c, 0 }; @@ -32,10 +27,6 @@ Str::init(const char* cstr) m_str = cstr; } -Str::~Str() -{ -} - Str Str::arg(const Str& s) const { |