summaryrefslogtreecommitdiff
path: root/unoidl/source/sourcefileprovider.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoidl/source/sourcefileprovider.cxx')
-rw-r--r--unoidl/source/sourcefileprovider.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unoidl/source/sourcefileprovider.cxx b/unoidl/source/sourcefileprovider.cxx
index 7e687b7231a8..18a6d666cf02 100644
--- a/unoidl/source/sourcefileprovider.cxx
+++ b/unoidl/source/sourcefileprovider.cxx
@@ -36,7 +36,7 @@ private:
};
rtl::Reference< Entity > Cursor::getNext(OUString * name) {
- assert(name != 0);
+ assert(name != nullptr);
rtl::Reference< Entity > ent;
if (iterator_ != map_.end()) {
*name = iterator_->first;
@@ -129,7 +129,7 @@ rtl::Reference<Entity> SourceFileProvider::findEntity(OUString const & name)
return rtl::Reference<Entity>();
}
Module * mod = dynamic_cast< Module * >(j->second.get());
- assert(mod != 0);
+ assert(mod != nullptr);
map = &mod->map;
}
}