diff options
| author | Florian Becker <fb@vxapps.com> | 2021-10-01 02:45:02 +0800 |
|---|---|---|
| committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2021-10-01 02:45:02 +0800 |
| commit | a31e2451e763f918ec900e6dfb0e63cf505f8cda (patch) | |
| tree | 7b664726966df24ddbbfe3d4718702a38a1c6e00 /include/cppunit/SynchronizedObject.h | |
| parent | 40fd60a4743a9e587b197a3991bb5f7e451e6b8a (diff) | |
| download | cppunit-a31e2451e763f918ec900e6dfb0e63cf505f8cda.tar.gz | |
replace 0 with nullptr when assigning to a pointer
Diffstat (limited to 'include/cppunit/SynchronizedObject.h')
| -rw-r--r-- | include/cppunit/SynchronizedObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppunit/SynchronizedObject.h b/include/cppunit/SynchronizedObject.h index 59c3cbb..68bd0cf 100644 --- a/include/cppunit/SynchronizedObject.h +++ b/include/cppunit/SynchronizedObject.h @@ -36,7 +36,7 @@ public: /*! Constructs a SynchronizedObject object. */ - SynchronizedObject( SynchronizationObject *syncObject =0 ); + SynchronizedObject( SynchronizationObject *syncObject = nullptr ); /// Destructor. virtual ~SynchronizedObject(); |
