mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-01 06:01:30 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -5,5 +5,5 @@
|
||||
|
||||
InputStream* InputStream::getResourceAsStream(const std::wstring& fileName) {
|
||||
File file(fileName);
|
||||
return file.exists() ? new FileInputStream(file) : NULL;
|
||||
return file.exists() ? new FileInputStream(file) : nullptr;
|
||||
}
|
||||
Reference in New Issue
Block a user