summaryrefslogtreecommitdiff
path: root/include/cppunit/TestResultCollector.h
diff options
context:
space:
mode:
authorFlorian Becker <fb@vxapps.com>2021-10-01 02:45:02 +0800
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2021-10-01 02:45:02 +0800
commita31e2451e763f918ec900e6dfb0e63cf505f8cda (patch)
tree7b664726966df24ddbbfe3d4718702a38a1c6e00 /include/cppunit/TestResultCollector.h
parent40fd60a4743a9e587b197a3991bb5f7e451e6b8a (diff)
downloadcppunit-a31e2451e763f918ec900e6dfb0e63cf505f8cda.tar.gz
replace 0 with nullptr when assigning to a pointer
Diffstat (limited to 'include/cppunit/TestResultCollector.h')
-rw-r--r--include/cppunit/TestResultCollector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppunit/TestResultCollector.h b/include/cppunit/TestResultCollector.h
index 287f019..314f1cc 100644
--- a/include/cppunit/TestResultCollector.h
+++ b/include/cppunit/TestResultCollector.h
@@ -37,7 +37,7 @@ public:
/*! Constructs a TestResultCollector object.
*/
- TestResultCollector( SynchronizationObject *syncObject = 0 );
+ TestResultCollector( SynchronizationObject *syncObject = nullptr );
/// Destructor.
virtual ~TestResultCollector() override;