App: modernize C++11

* use nullptr
This commit is contained in:
wmayer
2022-03-23 17:29:23 +01:00
parent 882e34f2ce
commit 749361d2f3
67 changed files with 647 additions and 643 deletions
+1 -1
View File
@@ -168,7 +168,7 @@ const std::string &ComplexGeoData::elementMapPrefix() {
const char *ComplexGeoData::isMappedElement(const char *name) {
if(name && boost::starts_with(name,elementMapPrefix()))
return name+elementMapPrefix().size();
return 0;
return nullptr;
}
std::string ComplexGeoData::newElementName(const char *name) {