use nullptr instead of NULL or 0 where applicable

This commit is contained in:
Axel Kohlmeyer
2021-10-12 21:47:02 -04:00
parent dd6f49a753
commit 88631372ec
44 changed files with 283 additions and 282 deletions

View File

@ -39,6 +39,6 @@ Point* NewPoint(int type){
case FIXEDPOINT : // A Fixed Point
return new FixedPoint();
default : // error
return 0;
return nullptr;
}
}