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.ref4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotests/kconfig_compiler/test10.cpp.ref b/autotests/kconfig_compiler/test10.cpp.ref
index a84bee30..971697d5 100644
--- a/autotests/kconfig_compiler/test10.cpp.ref
+++ b/autotests/kconfig_compiler/test10.cpp.ref
@@ -9,7 +9,7 @@
class Test10Helper
{
public:
- Test10Helper() : q(0) {}
+ Test10Helper() : q(nullptr) {}
~Test10Helper() { delete q; }
Test10 *q;
};
@@ -41,6 +41,6 @@ Test10::Test10( )
Test10::~Test10()
{
- s_globalTest10()->q = 0;
+ s_globalTest10()->q = nullptr;
}