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 /src/cppunit/XmlElement.cpp | |
parent | 942992e8abbe00aad7d0671671124a046cae2cda (diff) |
Replace NULL with nullptr
Diffstat (limited to 'src/cppunit/XmlElement.cpp')
-rw-r--r-- | src/cppunit/XmlElement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cppunit/XmlElement.cpp b/src/cppunit/XmlElement.cpp index b16d2fe..691cde1 100644 --- a/src/cppunit/XmlElement.cpp +++ b/src/cppunit/XmlElement.cpp @@ -124,7 +124,7 @@ XmlElement::elementFor( const std::string &name ) const } throw std::invalid_argument( "XmlElement::elementFor(), not matching child element found" ); - return NULL; // make some compilers happy. + return nullptr; // make some compilers happy. } |