Skip to content

Commit c588356

Browse files
committed
[Compat] adjust compat header naming
1 parent b07a6e3 commit c588356

File tree

21 files changed

+19
-19
lines changed

21 files changed

+19
-19
lines changed

Dependencies/Utility/Utility/Compat.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@
4949
#define _MAX_PATH 255
5050
#endif
5151

52-
#include "MemCompat.h"
53-
#include "StringCompat.h"
54-
#include "TCharCompat.h"
55-
#include "WCharCompat.h"
56-
#include "TimeCompat.h"
57-
#include "ThreadCompat.h"
52+
#include "mem_compat.h"
53+
#include "string_compat.h"
54+
#include "tchar_compat.h"
55+
#include "wchar_compat.h"
56+
#include "time_compat.h"
57+
#include "thread_compat.h"
5858

5959
#endif

Generals/Code/Libraries/Include/Lib/BaseType.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include <math.h>
3636
#include <string.h>
3737
// SuperHackers: utility macros for cross-platform compatibility
38-
#include <Utility/Compat.h>
38+
#include <Utility/compat.h>
3939

4040
/*
4141
** Turn off some unneeded warnings.

Generals/Code/Libraries/Source/WWVegas/WWLib/CRC.H

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#endif
4747

4848
// SuperHackers: Use IntrinCompat for _lrotl
49-
#include <Utility/IntrinCompat.h>
49+
#include <Utility/intrin_compat.h>
5050

5151
/*
5252
** This is a CRC engine class. It will process submitted data and generate a CRC from it.

Generals/Code/Libraries/Source/WWVegas/WWLib/always.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#include <new>
4545

4646
// SuperHackers: utility macros for cross-platform compatibility
47-
#include <Utility/Compat.h>
47+
#include <Utility/compat.h>
4848

4949
// Disable warning about exception handling not being enabled. It's used as part of STL - in a part of STL we don't use.
5050
#pragma warning(disable : 4530)

Generals/Code/Libraries/Source/WWVegas/WWLib/refcount.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
#include "refcount.h"
4343
// SuperHackers: Cross-platform __debugbreak() implementation
44-
#include <Utility/IntrinCompat.h>
44+
#include <Utility/intrin_compat.h>
4545

4646
#ifndef NDEBUG
4747

Generals/Code/Libraries/Source/WWVegas/WWLib/wwfile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include "WWFILE.H"
4141

4242
// SuperHackers: For _vsnprintf
43-
#include <Utility/Compat.h>
43+
#include <Utility/compat.h>
4444

4545
#pragma warning(disable : 4514)
4646

GeneralsMD/Code/GameEngine/Include/Common/PerfTimer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#ifndef __PERFTIMER_H__
3232
#define __PERFTIMER_H__
3333

34-
#include "Utility/IntrinCompat.h"
34+
#include "Utility/intrin_compat.h"
3535

3636
#if defined(_DEBUG) || defined(_INTERNAL)
3737
/*

GeneralsMD/Code/Libraries/Include/Lib/BaseType.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include <math.h>
3636
#include <string.h>
3737
// SuperHackers: utility macros for cross-platform compatibility
38-
#include <Utility/Compat.h>
38+
#include <Utility/compat.h>
3939

4040
/*
4141
** Turn off some unneeded warnings.

GeneralsMD/Code/Libraries/Source/WWVegas/WWDebug/wwdebug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
// TheSuperHackers @todo Recover WWDEBUG?
4545
#ifdef WWDEBUG
46-
#include <Utility/IntrinCompat.h>
46+
#include <Utility/intrin_compat.h>
4747
#endif
4848

4949
// The macro MESSAGE allows user to put:

GeneralsMD/Code/Libraries/Source/WWVegas/WWLib/CRC.H

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
#endif
4747

4848
// SuperHackers: Use IntrinCompat for _lrotl
49-
#include <Utility/IntrinCompat.h>
49+
#include <Utility/intrin_compat.h>
5050

5151
/*
5252
** This is a CRC engine class. It will process submitted data and generate a CRC from it.

GeneralsMD/Code/Libraries/Source/WWVegas/WWLib/always.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#include <new>
4545

4646
// SuperHackers: utility macros for cross-platform compatibility
47-
#include <Utility/Compat.h>
47+
#include <Utility/compat.h>
4848

4949
// Disable warning about exception handling not being enabled. It's used as part of STL - in a part of STL we don't use.
5050
#pragma warning(disable : 4530)

GeneralsMD/Code/Libraries/Source/WWVegas/WWLib/mpu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include "MPU.H"
4141
#include "math.h"
4242
#include <assert.h>
43-
#include <Utility/IntrinCompat.h>
43+
#include <Utility/intrin_compat.h>
4444

4545
typedef union {
4646
LARGE_INTEGER LargeInt;

GeneralsMD/Code/Libraries/Source/WWVegas/WWLib/refcount.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
#include "refcount.h"
4343
// SuperHackers: Cross-platform __debugbreak() implementation
44-
#include <Utility/IntrinCompat.h>
44+
#include <Utility/intrin_compat.h>
4545

4646
#ifndef NDEBUG
4747

GeneralsMD/Code/Libraries/Source/WWVegas/WWLib/wwfile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#include "WWFILE.H"
4141

4242
// SuperHackers: For _vsnprintf
43-
#include <Utility/Compat.h>
43+
#include <Utility/compat.h>
4444

4545
#pragma warning(disable : 4514)
4646

0 commit comments

Comments
 (0)