aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test10.cpp.ref
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test10.cpp.ref')
-rw-r--r--autotests/kconfig_compiler/test10.cpp.ref2
1 files changed, 2 insertions, 0 deletions
diff --git a/autotests/kconfig_compiler/test10.cpp.ref b/autotests/kconfig_compiler/test10.cpp.ref
index 12e3a431..f5590c20 100644
--- a/autotests/kconfig_compiler/test10.cpp.ref
+++ b/autotests/kconfig_compiler/test10.cpp.ref
@@ -11,6 +11,8 @@ class Test10Helper
public:
Test10Helper() : q(nullptr) {}
~Test10Helper() { delete q; }
+ Test10Helper(const Test10Helper&) = delete;
+ Test10Helper& operator=(const Test10Helper&) = delete;
Test10 *q;
};
Q_GLOBAL_STATIC(Test10Helper, s_globalTest10)