mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-23 22:26:52 +00:00
Replace NULL with nullptr
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user