EvanatorM / ScuffedMinecraft

A Minecraft Clone in C++
MIT License
70 stars 14 forks source link

you should use nullptr instead of NULL, for checking if pointers are null in c++. #3

Closed HappyGoFishing closed 4 weeks ago

HappyGoFishing commented 1 month ago

Checking if a pointer is NULL is technically correct, but its the C-way of doing things. In c++ there is a dedicated keyword, nullptr that should be used instead.

EvanatorM commented 1 month ago

Thanks for looking through the code! This will be fixed in the next release

EvanatorM commented 4 weeks ago

This has been resolved