aboutsummaryrefslogtreecommitdiff
path: root/common/xmlparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/xmlparser.h')
-rw-r--r--common/xmlparser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/xmlparser.h b/common/xmlparser.h
index 1e474b596c..2e4596ac0f 100644
--- a/common/xmlparser.h
+++ b/common/xmlparser.h
@@ -92,7 +92,7 @@ public:
/**
* Parser constructor.
*/
- XMLParser() : _XMLkeys(0), _stream(0) {}
+ XMLParser() : _XMLkeys(nullptr), _stream(nullptr) {}
virtual ~XMLParser();
@@ -195,7 +195,7 @@ public:
if (!_activeKey.empty())
return _activeKey.top();
- return 0;
+ return nullptr;
}
/**