aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/tests/libsample/str.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken6/tests/libsample/str.cpp')
-rw-r--r--sources/shiboken6/tests/libsample/str.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/sources/shiboken6/tests/libsample/str.cpp b/sources/shiboken6/tests/libsample/str.cpp
index 0411569b2..5f1bc3b37 100644
--- a/sources/shiboken6/tests/libsample/str.cpp
+++ b/sources/shiboken6/tests/libsample/str.cpp
@@ -34,11 +34,6 @@
using namespace std;
-Str::Str(const Str& s)
-{
- init(s.cstring());
-}
-
Str::Str(char c)
{
char str[2] = { c, 0 };
@@ -57,10 +52,6 @@ Str::init(const char* cstr)
m_str = cstr;
}
-Str::~Str()
-{
-}
-
Str
Str::arg(const Str& s) const
{