Replace NULL with nullptr

This commit is contained in:
lupoDharkael
2020-04-02 13:38:00 +02:00
parent 5f11e15571
commit 95a1400a2a
755 changed files with 5742 additions and 5742 deletions
+2 -2
View File
@@ -37,7 +37,7 @@
*/
NavRegion::NavRegion() :
map(NULL),
map(nullptr),
polygons_dirty(true) {
}
@@ -71,7 +71,7 @@ void NavRegion::update_polygons() {
polygons.clear();
polygons_dirty = false;
if (map == NULL) {
if (map == nullptr) {
return;
}