diff options
author | Florian Becker <fb@vxapps.com> | 2021-09-19 22:33:50 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2021-10-01 01:55:43 +0800 |
commit | 3836794be3e10b8a65f666f07fa721c7ea205a17 (patch) | |
tree | 1c133941eaa296f48f9231074258e64f27e14b13 /examples/cppunittest/MockTestCase.cpp | |
parent | 942992e8abbe00aad7d0671671124a046cae2cda (diff) | |
download | cppunit-3836794be3e10b8a65f666f07fa721c7ea205a17.tar.gz |
Replace NULL with nullptr
Diffstat (limited to 'examples/cppunittest/MockTestCase.cpp')
-rw-r--r-- | examples/cppunittest/MockTestCase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cppunittest/MockTestCase.cpp b/examples/cppunittest/MockTestCase.cpp index f8eff46..033bba5 100644 --- a/examples/cppunittest/MockTestCase.cpp +++ b/examples/cppunittest/MockTestCase.cpp @@ -20,7 +20,7 @@ MockTestCase::MockTestCase( std::string name ) , m_setUpThrow( false ) , m_tearDownThrow( false ) , m_runTestThrow( false ) - , m_passingTest( NULL ) + , m_passingTest( nullptr ) { } |