From 381b97eb6591f4f369c6bddd58e9cd972336d718 Mon Sep 17 00:00:00 2001 From: Amos <48657826+Mauler125@users.noreply.github.com> Date: Sun, 16 Jan 2022 01:40:27 +0100 Subject: [PATCH] Remove unnecessary include basetypes.h is now precompiled --- r5dev/client/IVEngineClient.cpp | 1 - r5dev/client/cdll_engine_int.cpp | 1 - r5dev/client/cdll_engine_int.h | 1 - r5dev/client/client.h | 1 - r5dev/common/opcodes.cpp | 1 - r5dev/common/opcodes.h | 1 - r5dev/ebisusdk/EbisuSDK.h | 1 - r5dev/engine/baseclientstate.h | 1 - r5dev/engine/host_cmd.cpp | 1 - r5dev/engine/net_chan.h | 1 - r5dev/engine/sys_dll2.h | 1 - r5dev/engine/sys_utils.h | 1 - r5dev/inputsystem/ButtonCode.h | 1 - r5dev/launcher/IApplication.h | 1 - r5dev/networksystem/r5net.cpp | 1 - r5dev/rtech/rtech_game.cpp | 1 - r5dev/rtech/stryder.h | 1 - r5dev/server/server.h | 1 - r5dev/squirrel/sqapi.h | 1 - r5dev/squirrel/sqvm.cpp | 1 - r5dev/tier0/IConVar.h | 1 - r5dev/tier0/completion.cpp | 1 - r5dev/tier0/cvar.h | 1 - r5dev/vgui/CEngineVGui.h | 1 - r5dev/vpc/IAppSystem.h | 1 - r5dev/vpc/keyvalues.h | 1 - 26 files changed, 26 deletions(-) diff --git a/r5dev/client/IVEngineClient.cpp b/r5dev/client/IVEngineClient.cpp index c9151c73..f2cd0fdd 100644 --- a/r5dev/client/IVEngineClient.cpp +++ b/r5dev/client/IVEngineClient.cpp @@ -5,7 +5,6 @@ //=============================================================================// #include "core/stdafx.h" -#include "tier0/basetypes.h" #include "client/IVEngineClient.h" //#ifdef GAMEDLL_S3 diff --git a/r5dev/client/cdll_engine_int.cpp b/r5dev/client/cdll_engine_int.cpp index f36b1071..bc0c1041 100644 --- a/r5dev/client/cdll_engine_int.cpp +++ b/r5dev/client/cdll_engine_int.cpp @@ -1,6 +1,5 @@ #include "core/stdafx.h" /*****************************************************************************/ -#include "tier0/basetypes.h" #include "tier0/IConVar.h" #include "tier0/cvar.h" #include "tier0/commandline.h" diff --git a/r5dev/client/cdll_engine_int.h b/r5dev/client/cdll_engine_int.h index f019d8b9..cac987e3 100644 --- a/r5dev/client/cdll_engine_int.h +++ b/r5dev/client/cdll_engine_int.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" enum class ClientFrameStage_t : int { diff --git a/r5dev/client/client.h b/r5dev/client/client.h index ac907890..b022fb40 100644 --- a/r5dev/client/client.h +++ b/r5dev/client/client.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" #include "server/IVEngineServer.h" //----------------------------------------------------------------------------- diff --git a/r5dev/common/opcodes.cpp b/r5dev/common/opcodes.cpp index 1f45e803..97ca222d 100644 --- a/r5dev/common/opcodes.cpp +++ b/r5dev/common/opcodes.cpp @@ -3,7 +3,6 @@ *-----------------------------------------------------------------------------*/ #include "core/stdafx.h" -#include "tier0/basetypes.h" #include "common/opcodes.h" #include "engine/host_cmd.h" #include "materialsystem/materialsystem.h" diff --git a/r5dev/common/opcodes.h b/r5dev/common/opcodes.h index a952e23a..78fba2d6 100644 --- a/r5dev/common/opcodes.h +++ b/r5dev/common/opcodes.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" namespace { diff --git a/r5dev/ebisusdk/EbisuSDK.h b/r5dev/ebisusdk/EbisuSDK.h index 0af1503c..aea332b5 100644 --- a/r5dev/ebisusdk/EbisuSDK.h +++ b/r5dev/ebisusdk/EbisuSDK.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" #include "tier0/completion.h" #include "public/include/utility.h" diff --git a/r5dev/engine/baseclientstate.h b/r5dev/engine/baseclientstate.h index 79dffc1a..e8076044 100644 --- a/r5dev/engine/baseclientstate.h +++ b/r5dev/engine/baseclientstate.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" #include "engine/debugoverlay.h" namespace diff --git a/r5dev/engine/host_cmd.cpp b/r5dev/engine/host_cmd.cpp index cb442d7e..0d918bff 100644 --- a/r5dev/engine/host_cmd.cpp +++ b/r5dev/engine/host_cmd.cpp @@ -1,5 +1,4 @@ #include "core/stdafx.h" -#include "tier0/basetypes.h" #include "engine/host_cmd.h" // TODO: this file is for when dedicated is stable, to move hardcoded patches in Host_Init for a more dynamic solution. diff --git a/r5dev/engine/net_chan.h b/r5dev/engine/net_chan.h index c3523431..8bbd526c 100644 --- a/r5dev/engine/net_chan.h +++ b/r5dev/engine/net_chan.h @@ -1,6 +1,5 @@ #pragma once #include "core/stdafx.h" -#include "tier0/basetypes.h" #include "common/protocol.h" #include "client/client.h" diff --git a/r5dev/engine/sys_dll2.h b/r5dev/engine/sys_dll2.h index edca632d..3181a709 100644 --- a/r5dev/engine/sys_dll2.h +++ b/r5dev/engine/sys_dll2.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" #include "tier0/interface.h" class CEngineAPI diff --git a/r5dev/engine/sys_utils.h b/r5dev/engine/sys_utils.h index aeee3298..c402e46d 100644 --- a/r5dev/engine/sys_utils.h +++ b/r5dev/engine/sys_utils.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" namespace { diff --git a/r5dev/inputsystem/ButtonCode.h b/r5dev/inputsystem/ButtonCode.h index f622d024..7b47cfa5 100644 --- a/r5dev/inputsystem/ButtonCode.h +++ b/r5dev/inputsystem/ButtonCode.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" #define JOYSTICK_BUTTON_INTERNAL( _joystick, _button ) ( JOYSTICK_FIRST_BUTTON + ((_joystick) * JOYSTICK_MAX_BUTTON_COUNT) + (_button) ) #define JOYSTICK_POV_BUTTON_INTERNAL( _joystick, _button ) ( JOYSTICK_FIRST_POV_BUTTON + ((_joystick) * JOYSTICK_POV_BUTTON_COUNT) + (_button) ) diff --git a/r5dev/launcher/IApplication.h b/r5dev/launcher/IApplication.h index 50387848..a36601cb 100644 --- a/r5dev/launcher/IApplication.h +++ b/r5dev/launcher/IApplication.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" namespace { diff --git a/r5dev/networksystem/r5net.cpp b/r5dev/networksystem/r5net.cpp index 4c6bd289..59e791fa 100644 --- a/r5dev/networksystem/r5net.cpp +++ b/r5dev/networksystem/r5net.cpp @@ -2,7 +2,6 @@ // #include "core/stdafx.h" -#include "tier0/basetypes.h" #include "tier0/cvar.h" #include "engine/sys_utils.h" #include "networksystem/r5net.h" diff --git a/r5dev/rtech/rtech_game.cpp b/r5dev/rtech/rtech_game.cpp index 3342594b..c307c798 100644 --- a/r5dev/rtech/rtech_game.cpp +++ b/r5dev/rtech/rtech_game.cpp @@ -1,5 +1,4 @@ #include "core/stdafx.h" -#include "tier0/basetypes.h" #include "engine/host_cmd.h" #include "engine/sys_utils.h" #include "rtech/rtech_game.h" diff --git a/r5dev/rtech/stryder.h b/r5dev/rtech/stryder.h index ad1e7400..89166b2a 100644 --- a/r5dev/rtech/stryder.h +++ b/r5dev/rtech/stryder.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" namespace { diff --git a/r5dev/server/server.h b/r5dev/server/server.h index b1107697..aaf0846e 100644 --- a/r5dev/server/server.h +++ b/r5dev/server/server.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" #include "networksystem/r5net.h" struct user_creds diff --git a/r5dev/squirrel/sqapi.h b/r5dev/squirrel/sqapi.h index cc1f8533..421a60f6 100644 --- a/r5dev/squirrel/sqapi.h +++ b/r5dev/squirrel/sqapi.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" namespace { diff --git a/r5dev/squirrel/sqvm.cpp b/r5dev/squirrel/sqvm.cpp index 2d95f921..3e819146 100644 --- a/r5dev/squirrel/sqvm.cpp +++ b/r5dev/squirrel/sqvm.cpp @@ -6,7 +6,6 @@ #include "core/stdafx.h" #include "core/logdef.h" -#include "tier0/basetypes.h" #include "tier0/cvar.h" #include "tier0/IConVar.h" #include "tier0/commandline.h" diff --git a/r5dev/tier0/IConVar.h b/r5dev/tier0/IConVar.h index ae92b23a..975c46d5 100644 --- a/r5dev/tier0/IConVar.h +++ b/r5dev/tier0/IConVar.h @@ -1,5 +1,4 @@ #pragma once -#include "basetypes.h" #include "ConCommand.h" #include "mathlib/color.h" diff --git a/r5dev/tier0/completion.cpp b/r5dev/tier0/completion.cpp index 0274700e..0ac35630 100644 --- a/r5dev/tier0/completion.cpp +++ b/r5dev/tier0/completion.cpp @@ -6,7 +6,6 @@ #include "core/stdafx.h" #include "windows/id3dx.h" -#include "tier0/basetypes.h" #include "tier0/cvar.h" #include "tier0/IConVar.h" #include "tier0/completion.h" diff --git a/r5dev/tier0/cvar.h b/r5dev/tier0/cvar.h index f3411172..173535f9 100644 --- a/r5dev/tier0/cvar.h +++ b/r5dev/tier0/cvar.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" #include "tier0/IConVar.h" namespace diff --git a/r5dev/vgui/CEngineVGui.h b/r5dev/vgui/CEngineVGui.h index 01d6ad6e..1e48afd6 100644 --- a/r5dev/vgui/CEngineVGui.h +++ b/r5dev/vgui/CEngineVGui.h @@ -1,6 +1,5 @@ #pragma once #include "core/stdafx.h" -#include "tier0/basetypes.h" #include "mathlib/color.h" enum class LogType_t : int diff --git a/r5dev/vpc/IAppSystem.h b/r5dev/vpc/IAppSystem.h index 1a959faa..86cb7d6d 100644 --- a/r5dev/vpc/IAppSystem.h +++ b/r5dev/vpc/IAppSystem.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" namespace { diff --git a/r5dev/vpc/keyvalues.h b/r5dev/vpc/keyvalues.h index 9963479a..c0ff5b37 100644 --- a/r5dev/vpc/keyvalues.h +++ b/r5dev/vpc/keyvalues.h @@ -1,5 +1,4 @@ #pragma once -#include "tier0/basetypes.h" #define MAKE_3_BYTES_FROM_1_AND_2( x1, x2 ) (( (( std::uint16_t )x2) << 8 ) | (std::uint8_t)(x1)) extern std::vector g_szAllPlaylists;