From ee636477ce34c2780f3ec5f4ee39cdae02cac173 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 11 May 2023 21:35:54 +0200 Subject: [PATCH] Uncomment Header file exists, but is stubbed; uncomment. --- r5dev/game/shared/entitylist_base.cpp | 2 +- r5dev/mathlib/color_conversion.cpp | 2 +- r5dev/mathlib/ssenoise.cpp | 2 +- r5dev/mathlib/transform.cpp | 2 +- r5dev/public/tier1/utlblockmemory.h | 2 +- r5dev/public/tier1/utlfixedmemory.h | 2 +- r5dev/public/tier1/utlmemory.h | 2 +- r5dev/tier1/generichash.cpp | 2 +- r5dev/tier1/stringpool.cpp | 2 +- r5dev/tier1/utlbuffer.cpp | 2 +- r5dev/tier1/utlstring.cpp | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/r5dev/game/shared/entitylist_base.cpp b/r5dev/game/shared/entitylist_base.cpp index c1c04266..71c27ec4 100644 --- a/r5dev/game/shared/entitylist_base.cpp +++ b/r5dev/game/shared/entitylist_base.cpp @@ -9,7 +9,7 @@ #include "public/ihandleentity.h" // memdbgon must be the last include file in a .cpp file!!! -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" enum { diff --git a/r5dev/mathlib/color_conversion.cpp b/r5dev/mathlib/color_conversion.cpp index 227958cf..14d689f0 100644 --- a/r5dev/mathlib/color_conversion.cpp +++ b/r5dev/mathlib/color_conversion.cpp @@ -8,7 +8,7 @@ #include "mathlib/vector.h" // memdbgon must be the last include file in a .cpp file!!! -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" //----------------------------------------------------------------------------- // Gamma conversion support diff --git a/r5dev/mathlib/ssenoise.cpp b/r5dev/mathlib/ssenoise.cpp index acb0b498..df0684de 100644 --- a/r5dev/mathlib/ssenoise.cpp +++ b/r5dev/mathlib/ssenoise.cpp @@ -10,7 +10,7 @@ #include "mathlib/noisedata.h" // memdbgon must be the last include file in a .cpp file!!! -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" #define MAGIC_NUMBER (1<<15) // gives 8 bits of fraction diff --git a/r5dev/mathlib/transform.cpp b/r5dev/mathlib/transform.cpp index 9b9a5b79..260a780e 100644 --- a/r5dev/mathlib/transform.cpp +++ b/r5dev/mathlib/transform.cpp @@ -12,7 +12,7 @@ #include "mathlib/mathlib.h" // memdbgon must be the last include file in a .cpp file!!! -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" const CTransform g_TransformIdentity(Vector3D(0.0f, 0.0f, 0.0f), Quaternion(0.0f, 0.0f, 0.0f, 1.0f)); diff --git a/r5dev/public/tier1/utlblockmemory.h b/r5dev/public/tier1/utlblockmemory.h index 520cff8e..8043481e 100644 --- a/r5dev/public/tier1/utlblockmemory.h +++ b/r5dev/public/tier1/utlblockmemory.h @@ -19,7 +19,7 @@ #include "mathlib/mathlib.h" //#include "tier0/memalloc.h" -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" #pragma warning (disable:4100) #pragma warning (disable:4514) diff --git a/r5dev/public/tier1/utlfixedmemory.h b/r5dev/public/tier1/utlfixedmemory.h index caea9c73..11497a92 100644 --- a/r5dev/public/tier1/utlfixedmemory.h +++ b/r5dev/public/tier1/utlfixedmemory.h @@ -18,7 +18,7 @@ #include "tier0/platform.h" #include "tier0/memalloc.h" -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" #include "mathlib/mathlib.h" diff --git a/r5dev/public/tier1/utlmemory.h b/r5dev/public/tier1/utlmemory.h index d8baa356..109518b4 100644 --- a/r5dev/public/tier1/utlmemory.h +++ b/r5dev/public/tier1/utlmemory.h @@ -17,7 +17,7 @@ #include "tier0/memstd.h" #include "tier0/memalloc.h" #include "mathlib/mathlib.h" -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" #pragma warning (disable:4100) #pragma warning (disable:4514) diff --git a/r5dev/tier1/generichash.cpp b/r5dev/tier1/generichash.cpp index 16b25c83..c3d5d737 100644 --- a/r5dev/tier1/generichash.cpp +++ b/r5dev/tier1/generichash.cpp @@ -14,7 +14,7 @@ #include "mathlib/swap.h" // NOTE: This has to be the last file included! -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" //----------------------------------------------------------------------------- diff --git a/r5dev/tier1/stringpool.cpp b/r5dev/tier1/stringpool.cpp index 48afb485..91ef49e2 100644 --- a/r5dev/tier1/stringpool.cpp +++ b/r5dev/tier1/stringpool.cpp @@ -12,7 +12,7 @@ #include "tier1/generichash.h" // memdbgon must be the last include file in a .cpp file!!! -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" //----------------------------------------------------------------------------- // Purpose: Comparison function for string sorted associative data structures diff --git a/r5dev/tier1/utlbuffer.cpp b/r5dev/tier1/utlbuffer.cpp index 4d00fe60..221c0782 100644 --- a/r5dev/tier1/utlbuffer.cpp +++ b/r5dev/tier1/utlbuffer.cpp @@ -14,7 +14,7 @@ #include "tier1/characterset.h" // memdbgon must be the last include file in a .cpp file!!! -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" //----------------------------------------------------------------------------- diff --git a/r5dev/tier1/utlstring.cpp b/r5dev/tier1/utlstring.cpp index 52da4b73..4354129e 100644 --- a/r5dev/tier1/utlstring.cpp +++ b/r5dev/tier1/utlstring.cpp @@ -11,7 +11,7 @@ #include // NOTE: This has to be the last file included! -//#include "tier0/memdbgon.h" +#include "tier0/memdbgon.h" static const int64 k_nMillion = 1000000;