summaryrefslogtreecommitdiff
path: root/configmgr/source/nodemap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/nodemap.cxx')
-rw-r--r--configmgr/source/nodemap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/nodemap.cxx b/configmgr/source/nodemap.cxx
index 4d823ce73a6d..d2f3cffeb795 100644
--- a/configmgr/source/nodemap.cxx
+++ b/configmgr/source/nodemap.cxx
@@ -31,7 +31,7 @@ namespace configmgr {
void NodeMap::cloneInto(NodeMap * target) const
{
- assert(target != 0 && target->empty());
+ assert(target != nullptr && target->empty());
NodeMapImpl clone(maImpl);
for (NodeMapImpl::iterator i(clone.begin()); i != clone.end(); ++i) {
i->second = i->second->clone(true);