mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-18 13:38:28 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -18,7 +18,7 @@ void ReceivingLevelScreen::tick() {
|
||||
connection->send(
|
||||
std::shared_ptr<KeepAlivePacket>(new KeepAlivePacket()));
|
||||
}
|
||||
if (connection != NULL) {
|
||||
if (connection != nullptr) {
|
||||
connection->tick();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user