mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-17 12:31:53 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -35,7 +35,7 @@ std::wstring HtmlString::ToString() {
|
||||
}
|
||||
|
||||
std::wstring HtmlString::Compose(std::vector<HtmlString>* strings) {
|
||||
if (strings == NULL) return L"";
|
||||
if (strings == nullptr) return L"";
|
||||
|
||||
std::wstringstream ss;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user