Skip to content

Commit ab8c963

Browse files
committed
build: add CppMacros.h includes for VC6 nullptr compatibility
1 parent 68b24ff commit ab8c963

File tree

13 files changed

+21
-0
lines changed

13 files changed

+21
-0
lines changed

Core/Libraries/Source/WWVegas/WWLib/LISTNODE.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
** Includes
4141
*/
4242
#include "assert.h"
43+
#include <Utility/CppMacros.h>
4344

4445

4546
#ifdef __BORLANDC__

Core/Libraries/Source/WWVegas/WWLib/WWCOMUtil.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
******************************************************************************/
3636

3737
#include "WWCOMUtil.h"
38+
#include <Utility/CppMacros.h>
3839

3940
/******************************************************************************
4041
*

Core/Libraries/Source/WWVegas/WWLib/strtok_r.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737

3838
#include "strtok_r.h"
3939
#include "stringex.h"
40+
#include <Utility/CppMacros.h>
4041

4142
//
4243
// Replacement for strtok() that doesn't use a static to

Core/Libraries/Source/debug/debug_internal.cpp

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

Core/Libraries/Source/debug/debug_io_con.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
//
2727
// Debug I/O class con (console window)
2828
//////////////////////////////////////////////////////////////////////////////
29+
30+
#include <Utility/CppMacros.h>
2931
#include "debug.h"
3032
#include "internal.h"
3133
#include "internal_io.h"

Core/Libraries/Source/debug/debug_io_net.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
//
2727
// Debug I/O class net (Network destination via named pipe)
2828
//////////////////////////////////////////////////////////////////////////////
29+
30+
#include <Utility/CppMacros.h>
2931
#include "debug.h"
3032
#include "internal.h"
3133
#include "internal_io.h"

Core/Libraries/Source/debug/debug_stack.cpp

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

Core/Libraries/Source/profile/profile.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
//
2727
// Profile module main code
2828
//////////////////////////////////////////////////////////////////////////////
29+
30+
#include <Utility/CppMacros.h>
2931
#include "profile.h"
3032
#include "internal.h"
3133
#include <new>

Core/Libraries/Source/profile/profile_cmd.cpp

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

Core/Libraries/Source/profile/profile_funclevel.cpp

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

0 commit comments

Comments
 (0)