aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test8b.cpp.ref
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test8b.cpp.ref')
-rw-r--r--autotests/kconfig_compiler/test8b.cpp.ref2
1 files changed, 2 insertions, 0 deletions
diff --git a/autotests/kconfig_compiler/test8b.cpp.ref b/autotests/kconfig_compiler/test8b.cpp.ref
index 0400de1e..367d8051 100644
--- a/autotests/kconfig_compiler/test8b.cpp.ref
+++ b/autotests/kconfig_compiler/test8b.cpp.ref
@@ -11,6 +11,8 @@ class Test8bHelper
public:
Test8bHelper() : q(nullptr) {}
~Test8bHelper() { delete q; }
+ Test8bHelper(const Test8bHelper&) = delete;
+ Test8bHelper& operator=(const Test8bHelper&) = delete;
Test8b *q;
};
Q_GLOBAL_STATIC(Test8bHelper, s_globalTest8b)