mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-07 22:14:46 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -38,7 +38,7 @@ SetPlayerTeamPacket::SetPlayerTeamPacket(PlayerTeam* team,
|
||||
__debugbreak();
|
||||
#endif
|
||||
}
|
||||
if (playerNames == NULL || playerNames->empty()) {
|
||||
if (playerNames == nullptr || playerNames->empty()) {
|
||||
app.DebugPrintf("Players cannot be null/empty");
|
||||
#ifndef _CONTENT_PACKAGE
|
||||
__debugbreak();
|
||||
|
||||
Reference in New Issue
Block a user