Use nullptr instead of NULL
This commit is contained in:
parent
2756735d0c
commit
63d6f0218b
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ bool FGAIFlightPlan::createPushBack(FGAIAircraft *ac,
|
|||
|
||||
FGGroundNetwork* groundNet = dep->groundNetwork();
|
||||
FGParking *parking = gate.parking();
|
||||
if (parking && parking->getPushBackPoint() != NULL) {
|
||||
if (parking && parking->getPushBackPoint() != nullptr) {
|
||||
FGTaxiRoute route = groundNet->findShortestRoute(parking, parking->getPushBackPoint(), false);
|
||||
|
||||
int size = route.size();
|
||||
|
|
Loading…
Reference in a new issue