From d3de5a2a79d2786207d0cfbbc9828e00dabd148d Mon Sep 17 00:00:00 2001 From: David Faure Date: Sun, 8 Jan 2017 17:23:38 +0100 Subject: This should now use nullptr --- autotests/kconfig_compiler/test8c.cpp.ref | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autotests/kconfig_compiler/test8c.cpp.ref b/autotests/kconfig_compiler/test8c.cpp.ref index 90305c1f..0759825c 100644 --- a/autotests/kconfig_compiler/test8c.cpp.ref +++ b/autotests/kconfig_compiler/test8c.cpp.ref @@ -11,7 +11,7 @@ class Test8cHelper { public: - Test8cHelper() : q(0) {} + Test8cHelper() : q(nullptr) {} ~Test8cHelper() { delete q; } Test8c *q; }; @@ -60,6 +60,6 @@ Test8c::Test8c( KSharedConfig::Ptr config ) Test8c::~Test8c() { - s_globalTest8c()->q = 0; + s_globalTest8c()->q = nullptr; } -- cgit v1.2.1