mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-05 13:57:22 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -7,13 +7,13 @@
|
||||
|
||||
StructureStart::StructureStart() {
|
||||
chunkX = chunkZ = 0;
|
||||
boundingBox = NULL; // 4J added initialiser
|
||||
boundingBox = nullptr; // 4J added initialiser
|
||||
}
|
||||
|
||||
StructureStart::StructureStart(int x, int z) {
|
||||
this->chunkX = x;
|
||||
this->chunkZ = z;
|
||||
boundingBox = NULL;
|
||||
boundingBox = nullptr;
|
||||
}
|
||||
|
||||
StructureStart::~StructureStart() {
|
||||
|
||||
Reference in New Issue
Block a user