Skip to content

Commit 37322b1

Browse files
committed
fix: add CppMacros.h include to files using nullptr
1 parent c92a5dd commit 37322b1

File tree

29 files changed

+58
-0
lines changed

29 files changed

+58
-0
lines changed

Core/Libraries/Source/Compression/EAC/huffencode.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#ifndef __HUFWRITE
2222
#define __HUFWRITE 1
2323

24+
#include <Utility/CppMacros.h>
25+
2426
#include <string.h>
2527
#include "codex.h"
2628
#include "huffcodex.h"

Core/Libraries/Source/WWVegas/WW3D2/dx8webbrowser.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
// $Header: $
3131
//******************************************************************************************
3232

33+
#include <Utility/CppMacros.h>
34+
3335
#include "dx8webbrowser.h"
3436
#include "ww3d.h"
3537
#include "dx8wrapper.h"

Core/Libraries/Source/WWVegas/WWDownload/registry.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
// Simple interface for storing/retreiving registry values
2121
// Author: Matthew D. Campbell, December 2001
2222

23+
#include <Utility/CppMacros.h>
24+
2325
#include <string>
2426

2527
#define WIN32_LEAN_AND_MEAN

Core/Libraries/Source/debug/debug_cmd.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
//
2727
// Debug command group 'debug'
2828
//////////////////////////////////////////////////////////////////////////////
29+
#include <Utility/CppMacros.h>
30+
2931
#include "debug.h"
3032
#include "debug_cmd.h"
3133
#include "internal.h"

Core/Libraries/Source/debug/debug_except.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
//
2727
// Unhandled exception handler
2828
//////////////////////////////////////////////////////////////////////////////
29+
#include <Utility/CppMacros.h>
30+
2931
#include "debug.h"
3032
#include "internal_except.h"
3133
#include <windows.h>

Core/Tools/DebugWindow/DebugWindow.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
// DebugWindow.cpp : Defines the initialization routines for the DLL.
2020
//
2121

22+
#include <Utility/CppMacros.h>
23+
2224
#include "StdAfx.h"
2325
#include "DebugWindow.h"
2426
#include "DebugWindowDialog.h"

Core/Tools/DebugWindow/DebugWindowDialog.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
** along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818

19+
#include <Utility/CppMacros.h>
20+
1921
#include "StdAfx.h"
2022
#include "DebugWindowDialog.h"
2123

Core/Tools/ImagePacker/Source/ImageInfo.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
///////////////////////////////////////////////////////////////////////////////
4040

4141
// SYSTEM INCLUDES ////////////////////////////////////////////////////////////
42+
#include <Utility/CppMacros.h>
43+
4244
#include <stdlib.h>
4345

4446
// USER INCLUDES //////////////////////////////////////////////////////////////

Core/Tools/ImagePacker/Source/WindowProcedures/ImageErrorProc.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
///////////////////////////////////////////////////////////////////////////////
4141
// SYSTEM INCLUDES ////////////////////////////////////////////////////////////
4242
///////////////////////////////////////////////////////////////////////////////
43+
#include <Utility/CppMacros.h>
44+
4345
#include <windows.h>
4446
#include <Utility/stdio_adapter.h>
4547

Core/Tools/ImagePacker/Source/WindowProcedures/ImagePackerProc.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
///////////////////////////////////////////////////////////////////////////////
3939

4040
// SYSTEM INCLUDES ////////////////////////////////////////////////////////////
41+
#include <Utility/CppMacros.h>
42+
4143
#include <windows.h>
4244
#include <io.h>
4345

0 commit comments

Comments
 (0)