Skip to content

Commit 43d9461

Browse files
committed
Remove string.h from BaseTypeCore.h
1 parent e2ed83d commit 43d9461

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

Core/GameEngine/Include/Common/AsciiString.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
#pragma once
4747

4848
#include <stdarg.h>
49+
#include <string.h>
4950
#include "Lib/BaseType.h"
5051
#include "Common/Debug.h"
5152
#include "Common/Errors.h"

Core/GameEngine/Include/Common/UnicodeString.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
#pragma once
4747

4848
#include <stdarg.h>
49+
#include <string.h>
4950
#include "Lib/BaseType.h"
5051
#include "Common/Debug.h"
5152
#include "Common/Errors.h"

Core/Libraries/Include/Lib/BaseTypeCore.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
#pragma once
3131

3232
#include <math.h>
33-
#include <string.h>
3433
// TheSuperHackers @build feliwir 07/04/2025 Adds utility macros for cross-platform compatibility
3534
#include <Utility/compat.h>
3635
#include <Utility/CppMacros.h>

Core/Libraries/Source/Compression/CompressionManager.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
#include "EAC/huffcodex.h"
3333
#include "EAC/refcodex.h"
3434

35+
#include <string.h>
36+
3537

3638
// TheSuperHackers @todo Recover debug logging in this file?
3739
#define DEBUG_LOG(x) {}

0 commit comments

Comments
 (0)