mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Replaced NULL with nullptr in C++ source files (#70)
This commit is contained in:
committed by
Peter Johnson
parent
8566878af4
commit
e9718fc7bf
@@ -72,7 +72,7 @@ void Error::Report() {
|
||||
#if defined(_WIN32)
|
||||
const int MAX_DIR = 100;
|
||||
char basename[MAX_DIR];
|
||||
_splitpath_s(m_filename.c_str(), NULL, 0, basename, MAX_DIR, NULL, 0, NULL,
|
||||
_splitpath_s(m_filename.c_str(), nullptr, 0, basename, MAX_DIR, nullptr, 0, nullptr,
|
||||
0);
|
||||
locStream << basename;
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user