mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-31 00:58:49 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
CraftTask::CraftTask(int itemId, int auxValue, int quantity, Tutorial* tutorial,
|
||||
int descriptionId, bool enablePreCompletion /*= true*/,
|
||||
std::vector<TutorialConstraint*>* inConstraints /*= NULL*/,
|
||||
std::vector<TutorialConstraint*>* inConstraints /*= nullptr*/,
|
||||
bool bShowMinimumTime /*=false*/,
|
||||
bool bAllowFade /*=true*/, bool m_bTaskReminders /*=true*/)
|
||||
: TutorialTask(tutorial, descriptionId, enablePreCompletion, inConstraints,
|
||||
@@ -21,7 +21,7 @@ CraftTask::CraftTask(int itemId, int auxValue, int quantity, Tutorial* tutorial,
|
||||
CraftTask::CraftTask(int* items, int* auxValues, int numItems, int quantity,
|
||||
Tutorial* tutorial, int descriptionId,
|
||||
bool enablePreCompletion /*= true*/,
|
||||
std::vector<TutorialConstraint*>* inConstraints /*= NULL*/,
|
||||
std::vector<TutorialConstraint*>* inConstraints /*= nullptr*/,
|
||||
bool bShowMinimumTime /*=false*/,
|
||||
bool bAllowFade /*=true*/, bool m_bTaskReminders /*=true*/)
|
||||
: TutorialTask(tutorial, descriptionId, enablePreCompletion, inConstraints,
|
||||
|
||||
Reference in New Issue
Block a user