mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-31 04:57:02 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -12,7 +12,7 @@ SetDisplayObjectivePacket::SetDisplayObjectivePacket(int slot,
|
||||
Objective* objective) {
|
||||
this->slot = slot;
|
||||
|
||||
if (objective == NULL) {
|
||||
if (objective == nullptr) {
|
||||
objectiveName = L"";
|
||||
} else {
|
||||
objectiveName = objective->getName();
|
||||
|
||||
Reference in New Issue
Block a user