[cxx-syntax]: consistent usage of nullptr.

This commit is contained in:
Danial Khazaei 2019-02-16 00:22:28 +03:30
parent c429f3b275
commit 7fee1a978c
No known key found for this signature in database
GPG key ID: F4F9B78264E84372

View file

@ -59,7 +59,7 @@ Foam::autoPtr<Foam::crMatrix> Foam::lduInterface::prolongationTransfer
);
// Dummy return to make the compiler happy
return autoPtr<crMatrix>(NULL);
return autoPtr<crMatrix>(nullptr);
}