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 /include/cppunit/portability | |
| parent | 942992e8abbe00aad7d0671671124a046cae2cda (diff) | |
| download | cppunit-3836794be3e10b8a65f666f07fa721c7ea205a17.tar.gz | |
Replace NULL with nullptr
Diffstat (limited to 'include/cppunit/portability')
| -rw-r--r-- | include/cppunit/portability/Stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppunit/portability/Stream.h b/include/cppunit/portability/Stream.h index e9beb8c..9968fa2 100644 --- a/include/cppunit/portability/Stream.h +++ b/include/cppunit/portability/Stream.h @@ -199,7 +199,7 @@ public: OStream &operator <<( const char *v ) { - return write( v ? v : "NULL" ); + return write( v ? v : "nullptr" ); } OStream &operator <<( char c ) |
