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.ref4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotests/kconfig_compiler/test8b.cpp.ref b/autotests/kconfig_compiler/test8b.cpp.ref
index 5c369a62..378aef73 100644
--- a/autotests/kconfig_compiler/test8b.cpp.ref
+++ b/autotests/kconfig_compiler/test8b.cpp.ref
@@ -9,7 +9,7 @@
class Test8bHelper
{
public:
- Test8bHelper() : q(0) {}
+ Test8bHelper() : q(nullptr) {}
~Test8bHelper() { delete q; }
Test8b *q;
};
@@ -47,6 +47,6 @@ Test8b::Test8b( )
Test8b::~Test8b()
{
- s_globalTest8b()->q = 0;
+ s_globalTest8b()->q = nullptr;
}