diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:11:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:19 +0100 |
commit | 047239d5ca229bb8ad85a2d9fcd2ae7b6f35b976 (patch) | |
tree | 139a191a1def79e706419db4090e958f5a217af5 /configmgr/source/nodemap.cxx | |
parent | fb4ce444c2239aa089b0b3c8f4b7629a624edea2 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I520c7e35d539ba804da17185353317eca504a582
Diffstat (limited to 'configmgr/source/nodemap.cxx')
-rw-r--r-- | configmgr/source/nodemap.cxx | 2 |
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); |