diff options
Diffstat (limited to 'autotests/kconfig_compiler/test_signal.cpp.ref')
-rw-r--r-- | autotests/kconfig_compiler/test_signal.cpp.ref | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autotests/kconfig_compiler/test_signal.cpp.ref b/autotests/kconfig_compiler/test_signal.cpp.ref index 8afd6741..103bfcf3 100644 --- a/autotests/kconfig_compiler/test_signal.cpp.ref +++ b/autotests/kconfig_compiler/test_signal.cpp.ref @@ -9,7 +9,7 @@ class TestSignalHelper { public: - TestSignalHelper() : q(0) {} + TestSignalHelper() : q(nullptr) {} ~TestSignalHelper() { delete q; } TestSignal *q; }; @@ -53,7 +53,7 @@ TestSignal::TestSignal( ) TestSignal::~TestSignal() { - s_globalTestSignal()->q = 0; + s_globalTestSignal()->q = nullptr; } bool TestSignal::usrSave() |