diff options
Diffstat (limited to 'autotests/kconfig_compiler/test5.cpp.ref')
-rw-r--r-- | autotests/kconfig_compiler/test5.cpp.ref | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autotests/kconfig_compiler/test5.cpp.ref b/autotests/kconfig_compiler/test5.cpp.ref index 0c33483b..dfa27f3b 100644 --- a/autotests/kconfig_compiler/test5.cpp.ref +++ b/autotests/kconfig_compiler/test5.cpp.ref @@ -11,6 +11,8 @@ class Test5Helper public: Test5Helper() : q(nullptr) {} ~Test5Helper() { delete q; } + Test5Helper(const Test5Helper&) = delete; + Test5Helper& operator=(const Test5Helper&) = delete; Test5 *q; }; Q_GLOBAL_STATIC(Test5Helper, s_globalTest5) |