From b01aab4a3964aa699a316fe847c5594a9b9f8741 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Mon, 28 Jan 2013 23:15:54 -0800 Subject: [PATCH] Standardize on C++ headers. Also removes a bunch of duplicate #includes of stuff that's already pulled in by HeadSpin.h. --- Sources/Plasma/Apps/plClient/winmain.cpp | 1 - Sources/Plasma/CoreLib/HeadSpin.h | 6 +++--- Sources/Plasma/CoreLib/hsBitVector.cpp | 2 -- Sources/Plasma/CoreLib/hsMemory.cpp | 2 -- Sources/Plasma/CoreLib/hsStream.cpp | 3 --- Sources/Plasma/CoreLib/hsStream.h | 2 -- Sources/Plasma/CoreLib/hsTemplates.h | 3 +-- Sources/Plasma/CoreLib/hsThread_Unix.cpp | 10 +++++----- Sources/Plasma/CoreLib/plProduct.h | 2 +- .../FeatureLib/pfAnimation/plRandomCommandMod.cpp | 1 - .../Plasma/FeatureLib/pfGameGUIMgr/pfGameGUIMgr.cpp | 1 - Sources/Plasma/NucleusLib/pnKeyedObject/plFixedKey.cpp | 1 - Sources/Plasma/NucleusLib/pnKeyedObject/plKey.cpp | 1 - Sources/Plasma/NucleusLib/pnNetCommon/plNetApp.h | 5 +---- Sources/Plasma/NucleusLib/pnNetCommon/pnNetCommon.cpp | 2 +- .../PubUtilLib/plAudioCore/plAudioFileReader.cpp | 1 - .../PubUtilLib/plAudioCore/plBufferedFileReader.cpp | 3 --- .../Plasma/PubUtilLib/plAudioCore/plFastWavReader.cpp | 3 --- .../PubUtilLib/plAudioCore/plSoundDeswizzler.cpp | 1 - Sources/Plasma/PubUtilLib/plAudioCore/plWavFile.cpp | 3 --- .../Plasma/PubUtilLib/plContainer/hsStringTable.cpp | 5 +++-- Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.cpp | 1 - Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.h | 1 - Sources/Plasma/PubUtilLib/plPhysX/plSimulationMgr.h | 4 ++-- .../Plasma/PubUtilLib/plPipeline/hsG3DDeviceSelector.h | 1 - .../Plasma/PubUtilLib/plProgressMgr/plProgressMgr.cpp | 3 --- .../PubUtilLib/plSockets/plBufferedSocketReader.cpp | 2 +- .../Plasma/PubUtilLib/plStatusLog/plEncryptLogLine.cpp | 2 -- Sources/Plasma/PubUtilLib/plStatusLog/plLoggable.h | 1 - Sources/Plasma/PubUtilLib/plStatusLog/plStatusLog.cpp | 4 ++-- Sources/Tools/MaxConvert/Pch.h | 2 +- Sources/Tools/MaxConvert/StringTokenizer.cpp | 2 +- .../plLocalizationEditor/plLocalizationEditor.cpp | 1 - 33 files changed, 22 insertions(+), 60 deletions(-) diff --git a/Sources/Plasma/Apps/plClient/winmain.cpp b/Sources/Plasma/Apps/plClient/winmain.cpp index a4c0e5a7..4b73806c 100644 --- a/Sources/Plasma/Apps/plClient/winmain.cpp +++ b/Sources/Plasma/Apps/plClient/winmain.cpp @@ -43,7 +43,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "HeadSpin.h" #include "hsWindows.h" -#include #include // windows directory handling fxns (for chdir) #include #include // ShellExecuteA diff --git a/Sources/Plasma/CoreLib/HeadSpin.h b/Sources/Plasma/CoreLib/HeadSpin.h index 2560bd72..ba1c21bb 100644 --- a/Sources/Plasma/CoreLib/HeadSpin.h +++ b/Sources/Plasma/CoreLib/HeadSpin.h @@ -54,8 +54,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include #include #include -#include -#include +#include +#include //====================================== // Winblows Hacks @@ -77,7 +77,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com // even more bloated than before! struct HWND__; typedef struct HWND__ *HWND; struct HINSTANCE__; typedef struct HINSTANCE__ *HINSTANCE; - + typedef HWND hsWindowHndl; typedef HINSTANCE hsWindowInst; typedef HINSTANCE HMODULE; diff --git a/Sources/Plasma/CoreLib/hsBitVector.cpp b/Sources/Plasma/CoreLib/hsBitVector.cpp index c3194b2c..e0fbdff8 100644 --- a/Sources/Plasma/CoreLib/hsBitVector.cpp +++ b/Sources/Plasma/CoreLib/hsBitVector.cpp @@ -45,8 +45,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "hsBitVector.h" #include "hsTemplates.h" -#include - hsBitVector::hsBitVector(int b, ...) : fBitVectors(nil), fNumBitVectors(0) diff --git a/Sources/Plasma/CoreLib/hsMemory.cpp b/Sources/Plasma/CoreLib/hsMemory.cpp index 324569da..38388f51 100644 --- a/Sources/Plasma/CoreLib/hsMemory.cpp +++ b/Sources/Plasma/CoreLib/hsMemory.cpp @@ -40,8 +40,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com *==LICENSE==*/ -#include - #include "hsMemory.h" #include "hsExceptions.h" diff --git a/Sources/Plasma/CoreLib/hsStream.cpp b/Sources/Plasma/CoreLib/hsStream.cpp index c7971b74..a0efb2b4 100644 --- a/Sources/Plasma/CoreLib/hsStream.cpp +++ b/Sources/Plasma/CoreLib/hsStream.cpp @@ -39,18 +39,15 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com Mead, WA 99021 *==LICENSE==*/ -#include #include "hsStream.h" #include "hsMemory.h" - #include "hsTemplates.h" #if HS_BUILD_FOR_UNIX #include #endif - #if HS_BUILD_FOR_WIN32 #include #endif diff --git a/Sources/Plasma/CoreLib/hsStream.h b/Sources/Plasma/CoreLib/hsStream.h index 83351954..b0caf96c 100644 --- a/Sources/Plasma/CoreLib/hsStream.h +++ b/Sources/Plasma/CoreLib/hsStream.h @@ -42,8 +42,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #ifndef hsStream_Defined #define hsStream_Defined -#include // Included for GCC 3.2.2+ - #include "HeadSpin.h" #include "hsMemory.h" #include "plFileSystem.h" diff --git a/Sources/Plasma/CoreLib/hsTemplates.h b/Sources/Plasma/CoreLib/hsTemplates.h index 76bb6b96..56a1e6b5 100644 --- a/Sources/Plasma/CoreLib/hsTemplates.h +++ b/Sources/Plasma/CoreLib/hsTemplates.h @@ -46,8 +46,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "hsMemory.h" #include "hsRefCnt.h" - -#include +#include #ifdef HS_DEBUGGING diff --git a/Sources/Plasma/CoreLib/hsThread_Unix.cpp b/Sources/Plasma/CoreLib/hsThread_Unix.cpp index d42c0593..4c3deb54 100644 --- a/Sources/Plasma/CoreLib/hsThread_Unix.cpp +++ b/Sources/Plasma/CoreLib/hsThread_Unix.cpp @@ -44,7 +44,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include #include #include -#include +#include #define NO_POSIX_CLOCK 1 @@ -146,8 +146,8 @@ void hsThread::ThreadYield() //#define MUTEX_TIMING #ifdef MUTEX_TIMING -#include -#include +#include +#include #include #include "hsWide.h" @@ -168,8 +168,8 @@ static void InitMutexTimerFile() //#define EVENT_LOGGING #ifdef EVENT_LOGGING -#include -#include +#include +#include #include #include "NucleusLib/inc/hsTimer.h" diff --git a/Sources/Plasma/CoreLib/plProduct.h b/Sources/Plasma/CoreLib/plProduct.h index 16fc395c..740170a8 100644 --- a/Sources/Plasma/CoreLib/plProduct.h +++ b/Sources/Plasma/CoreLib/plProduct.h @@ -40,7 +40,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com *==LICENSE==*/ -#include +#include class plString; diff --git a/Sources/Plasma/FeatureLib/pfAnimation/plRandomCommandMod.cpp b/Sources/Plasma/FeatureLib/pfAnimation/plRandomCommandMod.cpp index cc555c37..2fb9a44f 100644 --- a/Sources/Plasma/FeatureLib/pfAnimation/plRandomCommandMod.cpp +++ b/Sources/Plasma/FeatureLib/pfAnimation/plRandomCommandMod.cpp @@ -40,7 +40,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com *==LICENSE==*/ -#include #include #include "HeadSpin.h" diff --git a/Sources/Plasma/FeatureLib/pfGameGUIMgr/pfGameGUIMgr.cpp b/Sources/Plasma/FeatureLib/pfGameGUIMgr/pfGameGUIMgr.cpp index 75243a71..482d670d 100644 --- a/Sources/Plasma/FeatureLib/pfGameGUIMgr/pfGameGUIMgr.cpp +++ b/Sources/Plasma/FeatureLib/pfGameGUIMgr/pfGameGUIMgr.cpp @@ -49,7 +49,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com // // ////////////////////////////////////////////////////////////////////////////// -#include #include "hsTimer.h" #include "HeadSpin.h" #include "pfGameGUIMgr.h" diff --git a/Sources/Plasma/NucleusLib/pnKeyedObject/plFixedKey.cpp b/Sources/Plasma/NucleusLib/pnKeyedObject/plFixedKey.cpp index 491dac96..8bc01a9e 100644 --- a/Sources/Plasma/NucleusLib/pnKeyedObject/plFixedKey.cpp +++ b/Sources/Plasma/NucleusLib/pnKeyedObject/plFixedKey.cpp @@ -48,7 +48,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "HeadSpin.h" #include "plUoid.h" -#include #include "plFixedKey.h" #include "plCreatableIndex.h" diff --git a/Sources/Plasma/NucleusLib/pnKeyedObject/plKey.cpp b/Sources/Plasma/NucleusLib/pnKeyedObject/plKey.cpp index a45012ec..9f40017b 100644 --- a/Sources/Plasma/NucleusLib/pnKeyedObject/plKey.cpp +++ b/Sources/Plasma/NucleusLib/pnKeyedObject/plKey.cpp @@ -50,7 +50,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "HeadSpin.h" #include "plKey.h" #include "plUoid.h" -#include #include "hsResMgr.h" #define TRACK_REFS 0 // MEMLEAKFISH diff --git a/Sources/Plasma/NucleusLib/pnNetCommon/plNetApp.h b/Sources/Plasma/NucleusLib/pnNetCommon/plNetApp.h index 6e5fb76e..5c0a2d6e 100644 --- a/Sources/Plasma/NucleusLib/pnNetCommon/plNetApp.h +++ b/Sources/Plasma/NucleusLib/pnNetCommon/plNetApp.h @@ -46,14 +46,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "hsBitVector.h" #include "plNetGroup.h" -#include "pnKeyedObject/hsKeyedObject.h" +#include "pnKeyedObject/hsKeyedObject.h" #include "pnKeyedObject/plUoid.h" - #include "plStatusLog/plLoggable.h" -#include - #define plVerifyConditionRet(NetApp,cond,ret,str) \ do { \ if (!(cond)) { \ diff --git a/Sources/Plasma/NucleusLib/pnNetCommon/pnNetCommon.cpp b/Sources/Plasma/NucleusLib/pnNetCommon/pnNetCommon.cpp index 8c34e98a..4b9215a5 100644 --- a/Sources/Plasma/NucleusLib/pnNetCommon/pnNetCommon.cpp +++ b/Sources/Plasma/NucleusLib/pnNetCommon/pnNetCommon.cpp @@ -48,7 +48,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com # include # include # include -# include // for memcpy +# include // for memcpy #elif !defined(HS_BUILD_FOR_WIN32) #error "Not implemented for this platform" #endif diff --git a/Sources/Plasma/PubUtilLib/plAudioCore/plAudioFileReader.cpp b/Sources/Plasma/PubUtilLib/plAudioCore/plAudioFileReader.cpp index db125f4b..006b2c4b 100644 --- a/Sources/Plasma/PubUtilLib/plAudioCore/plAudioFileReader.cpp +++ b/Sources/Plasma/PubUtilLib/plAudioCore/plAudioFileReader.cpp @@ -48,7 +48,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com // 3.5.2001 - Created by mcn. // // // ////////////////////////////////////////////////////////////////////////////// -#include #include "HeadSpin.h" #include "plAudioFileReader.h" diff --git a/Sources/Plasma/PubUtilLib/plAudioCore/plBufferedFileReader.cpp b/Sources/Plasma/PubUtilLib/plAudioCore/plBufferedFileReader.cpp index 6b08fb69..eac9d729 100644 --- a/Sources/Plasma/PubUtilLib/plAudioCore/plBufferedFileReader.cpp +++ b/Sources/Plasma/PubUtilLib/plAudioCore/plBufferedFileReader.cpp @@ -52,9 +52,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com // // ////////////////////////////////////////////////////////////////////////////// -#include -#include -#include #include "HeadSpin.h" #include "plBufferedFileReader.h" #include "plFileSystem.h" diff --git a/Sources/Plasma/PubUtilLib/plAudioCore/plFastWavReader.cpp b/Sources/Plasma/PubUtilLib/plAudioCore/plFastWavReader.cpp index d19615fb..02057614 100644 --- a/Sources/Plasma/PubUtilLib/plAudioCore/plFastWavReader.cpp +++ b/Sources/Plasma/PubUtilLib/plAudioCore/plFastWavReader.cpp @@ -51,9 +51,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com // // ////////////////////////////////////////////////////////////////////////////// -#include -#include -#include #include "HeadSpin.h" #include "plFastWavReader.h" diff --git a/Sources/Plasma/PubUtilLib/plAudioCore/plSoundDeswizzler.cpp b/Sources/Plasma/PubUtilLib/plAudioCore/plSoundDeswizzler.cpp index 9ea85ea2..3a57f5df 100644 --- a/Sources/Plasma/PubUtilLib/plAudioCore/plSoundDeswizzler.cpp +++ b/Sources/Plasma/PubUtilLib/plAudioCore/plSoundDeswizzler.cpp @@ -48,7 +48,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "HeadSpin.h" #include "plSoundDeswizzler.h" -#include plSoundDeswizzler::plSoundDeswizzler( void *srcPtr, uint32_t srcLength, uint8_t numChannels, uint32_t sampleSize ) diff --git a/Sources/Plasma/PubUtilLib/plAudioCore/plWavFile.cpp b/Sources/Plasma/PubUtilLib/plAudioCore/plWavFile.cpp index c858c211..573451f2 100644 --- a/Sources/Plasma/PubUtilLib/plAudioCore/plWavFile.cpp +++ b/Sources/Plasma/PubUtilLib/plAudioCore/plWavFile.cpp @@ -39,7 +39,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com Mead, WA 99021 *==LICENSE==*/ -#include #include "plWavFile.h" #ifdef BUILDING_MAXPLUGIN @@ -52,8 +51,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include -#include - #pragma comment(lib, "winmm.lib") #ifdef PATCHER #define DXTRACE_ERR(str,hr) hr // I'm not linking in directx stuff to the just for this diff --git a/Sources/Plasma/PubUtilLib/plContainer/hsStringTable.cpp b/Sources/Plasma/PubUtilLib/plContainer/hsStringTable.cpp index 68daf023..e1cc2e26 100644 --- a/Sources/Plasma/PubUtilLib/plContainer/hsStringTable.cpp +++ b/Sources/Plasma/PubUtilLib/plContainer/hsStringTable.cpp @@ -40,10 +40,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com *==LICENSE==*/ #include "hsStringTable.h" -#include + #if HS_BUILD_FOR_UNIX -#include +#include #endif + // // hsStringTable // diff --git a/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.cpp b/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.cpp index bb2137bd..b068a6ff 100644 --- a/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.cpp +++ b/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.cpp @@ -44,7 +44,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "HeadSpin.h" #include #include -#include #include const plString& plConfigInfo::GlobalSection() diff --git a/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.h b/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.h index f7b23293..9391baa1 100644 --- a/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.h +++ b/Sources/Plasma/PubUtilLib/plContainer/plConfigInfo.h @@ -43,7 +43,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #define plConfigInfo_h_inc #include "plKeysAndValues.h" -#include ///////////////////////////////////////////////// diff --git a/Sources/Plasma/PubUtilLib/plPhysX/plSimulationMgr.h b/Sources/Plasma/PubUtilLib/plPhysX/plSimulationMgr.h index 170ed011..506fe239 100644 --- a/Sources/Plasma/PubUtilLib/plPhysX/plSimulationMgr.h +++ b/Sources/Plasma/PubUtilLib/plPhysX/plSimulationMgr.h @@ -170,7 +170,7 @@ protected: #define SIM_VERBOSE #ifdef SIM_VERBOSE -#include // only include when we need to call plSimulationMgr::Log +#include // only include when we need to call plSimulationMgr::Log inline void SimLog(const char *str, ...) { @@ -189,4 +189,4 @@ inline void SimLog(const char *str, ...) #endif -#endif \ No newline at end of file +#endif diff --git a/Sources/Plasma/PubUtilLib/plPipeline/hsG3DDeviceSelector.h b/Sources/Plasma/PubUtilLib/plPipeline/hsG3DDeviceSelector.h index dd006b55..d8cc159e 100644 --- a/Sources/Plasma/PubUtilLib/plPipeline/hsG3DDeviceSelector.h +++ b/Sources/Plasma/PubUtilLib/plPipeline/hsG3DDeviceSelector.h @@ -447,7 +447,6 @@ public: // /////////////////////////////////////////////////////////////////////////////// -#include #include "HeadSpin.h" class plDemoDebugFile diff --git a/Sources/Plasma/PubUtilLib/plProgressMgr/plProgressMgr.cpp b/Sources/Plasma/PubUtilLib/plProgressMgr/plProgressMgr.cpp index d98d813b..a3ac71f2 100644 --- a/Sources/Plasma/PubUtilLib/plProgressMgr/plProgressMgr.cpp +++ b/Sources/Plasma/PubUtilLib/plProgressMgr/plProgressMgr.cpp @@ -49,15 +49,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com // // ////////////////////////////////////////////////////////////////////////////// -#include #include "HeadSpin.h" #include "plProgressMgr.h" #include "hsTimer.h" #include "plPipeline/plPlates.h" -#include - ////////////////////////////////////////////////////////////////////////////// //// plProgressMgr Functions ///////////////////////////////////////////////// diff --git a/Sources/Plasma/PubUtilLib/plSockets/plBufferedSocketReader.cpp b/Sources/Plasma/PubUtilLib/plSockets/plBufferedSocketReader.cpp index 03de5760..93c4d617 100644 --- a/Sources/Plasma/PubUtilLib/plSockets/plBufferedSocketReader.cpp +++ b/Sources/Plasma/PubUtilLib/plSockets/plBufferedSocketReader.cpp @@ -41,7 +41,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com *==LICENSE==*/ #include "plBufferedSocketReader.h" #include "plTcpSocket.h" -#include +#include plBufferedSocketReader::plBufferedSocketReader(int size) diff --git a/Sources/Plasma/PubUtilLib/plStatusLog/plEncryptLogLine.cpp b/Sources/Plasma/PubUtilLib/plStatusLog/plEncryptLogLine.cpp index 22cd112a..36a6564d 100644 --- a/Sources/Plasma/PubUtilLib/plStatusLog/plEncryptLogLine.cpp +++ b/Sources/Plasma/PubUtilLib/plStatusLog/plEncryptLogLine.cpp @@ -51,8 +51,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include "plEncryptLogLine.h" -#include - void plStatusEncrypt::Decrypt( uint8_t *line, int32_t len, uint8_t hint ) { // Da reverse, of course! diff --git a/Sources/Plasma/PubUtilLib/plStatusLog/plLoggable.h b/Sources/Plasma/PubUtilLib/plStatusLog/plLoggable.h index 204b0c3a..091e3dd0 100644 --- a/Sources/Plasma/PubUtilLib/plStatusLog/plLoggable.h +++ b/Sources/Plasma/PubUtilLib/plStatusLog/plLoggable.h @@ -42,7 +42,6 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #ifndef plLoggable_inc #define plLoggable_inc -#include #include "HeadSpin.h" #include "plString.h" diff --git a/Sources/Plasma/PubUtilLib/plStatusLog/plStatusLog.cpp b/Sources/Plasma/PubUtilLib/plStatusLog/plStatusLog.cpp index 12a65185..4cade27e 100644 --- a/Sources/Plasma/PubUtilLib/plStatusLog/plStatusLog.cpp +++ b/Sources/Plasma/PubUtilLib/plStatusLog/plStatusLog.cpp @@ -55,8 +55,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com // // ////////////////////////////////////////////////////////////////////////////// -#include -#include +#include +#include #include "hsThread.h" #include "hsTemplates.h" #include "hsTimer.h" diff --git a/Sources/Tools/MaxConvert/Pch.h b/Sources/Tools/MaxConvert/Pch.h index 475e7a59..9d34ff19 100644 --- a/Sources/Tools/MaxConvert/Pch.h +++ b/Sources/Tools/MaxConvert/Pch.h @@ -52,7 +52,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com #include #include #include -#include +#include #include // Core Plasma diff --git a/Sources/Tools/MaxConvert/StringTokenizer.cpp b/Sources/Tools/MaxConvert/StringTokenizer.cpp index 04b8ea76..ca700d5e 100644 --- a/Sources/Tools/MaxConvert/StringTokenizer.cpp +++ b/Sources/Tools/MaxConvert/StringTokenizer.cpp @@ -40,7 +40,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com *==LICENSE==*/ -#include +#include #pragma hdrstop #include "StringTokenizer.h" diff --git a/Sources/Tools/plLocalizationEditor/plLocalizationEditor.cpp b/Sources/Tools/plLocalizationEditor/plLocalizationEditor.cpp index 8f31009f..d1177912 100644 --- a/Sources/Tools/plLocalizationEditor/plLocalizationEditor.cpp +++ b/Sources/Tools/plLocalizationEditor/plLocalizationEditor.cpp @@ -66,7 +66,6 @@ REGISTER_CREATABLE(plInitialAgeStateLoadedMsg); #include "HeadSpin.h" #include -#include #include #include #include