From d802d392811be44d34ae9cd23f616db93e54c50f Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 9 Mar 2014 21:14:26 +0100 Subject: clang-modernize -use-nullptr and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine --- docs/DSP/DSP_InterC/DSP_InterC/DSP_InterC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/DSP/DSP_InterC/DSP_InterC/DSP_InterC.cpp b/docs/DSP/DSP_InterC/DSP_InterC/DSP_InterC.cpp index d4eabf1873..aeddd410b5 100644 --- a/docs/DSP/DSP_InterC/DSP_InterC/DSP_InterC.cpp +++ b/docs/DSP/DSP_InterC/DSP_InterC/DSP_InterC.cpp @@ -35,7 +35,7 @@ void Decode(uint16 startAddress, uint16 endAddress) int _tmain(int argc, _TCHAR* argv[]) { FILE* pFile = fopen("c:\\_\\dsp_rom.bin", "rb"); - if (pFile == NULL) + if (pFile == nullptr) return -1; fread(g_IMemory, 0x1000, 1, pFile); -- cgit v1.2.3