diff --git a/Code/Legacy/CryCommon/Mocks/StubTimer.h b/Code/Legacy/CryCommon/Mocks/StubTimer.h index 5ed509caf9..126848a7ee 100644 --- a/Code/Legacy/CryCommon/Mocks/StubTimer.h +++ b/Code/Legacy/CryCommon/Mocks/StubTimer.h @@ -6,7 +6,8 @@ */ #pragma once -#include +#include +#include //! Simple stub timer that exposes a single simple interface for setting the current time. class StubTimer diff --git a/Code/Legacy/CryCommon/TimeValue.h b/Code/Legacy/CryCommon/TimeValue.h index af0950d7ea..ce2613fe9e 100644 --- a/Code/Legacy/CryCommon/TimeValue.h +++ b/Code/Legacy/CryCommon/TimeValue.h @@ -11,6 +11,8 @@ #pragma once +#include +#include class CTimeValue { diff --git a/Gems/Gestures/Code/Source/GesturesModule.cpp b/Gems/Gestures/Code/Source/GesturesModule.cpp index 404ed2f265..9343f14e4a 100644 --- a/Gems/Gestures/Code/Source/GesturesModule.cpp +++ b/Gems/Gestures/Code/Source/GesturesModule.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include #include "GesturesSystemComponent.h" diff --git a/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp b/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp index a5cafecb68..1abe171bab 100644 --- a/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp +++ b/Gems/Gestures/Code/Source/GesturesSystemComponent.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include "GesturesSystemComponent.h" #include diff --git a/Gems/Gestures/Code/Source/Gestures_precompiled.h b/Gems/Gestures/Code/Source/Gestures_precompiled.h deleted file mode 100644 index 51811e518a..0000000000 --- a/Gems/Gestures/Code/Source/Gestures_precompiled.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution. - * - * SPDX-License-Identifier: Apache-2.0 OR MIT - * - */ - -#pragma once - -#include -#include diff --git a/Gems/Gestures/Code/Source/InputChannelGesture.cpp b/Gems/Gestures/Code/Source/InputChannelGesture.cpp index 0a0e92ef1e..0053122c2f 100644 --- a/Gems/Gestures/Code/Source/InputChannelGesture.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGesture.cpp @@ -5,7 +5,6 @@ * */ -#include "Gestures_precompiled.h" #include #include diff --git a/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp b/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp index 843ee5b529..8d8fcfcd4d 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureClickOrTap.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureClickOrTap.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp b/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp index 6f3121b12d..4bac0d795b 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureDrag.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureDrag.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp b/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp index ee8c382667..dad3deddf5 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureHold.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureHold.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp b/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp index f8981e996f..cff831bd6f 100644 --- a/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGesturePinch.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGesturePinch.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp b/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp index baeca606fa..0217040aca 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureRotate.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureRotate.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp b/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp index 360f2c071a..291843e0c3 100644 --- a/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp +++ b/Gems/Gestures/Code/Source/InputChannelGestureSwipe.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputChannelGestureSwipe.h" //////////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/Gems/Gestures/Code/Source/InputDeviceGestures.cpp b/Gems/Gestures/Code/Source/InputDeviceGestures.cpp index 9ecd57a7b2..100cd58ae5 100644 --- a/Gems/Gestures/Code/Source/InputDeviceGestures.cpp +++ b/Gems/Gestures/Code/Source/InputDeviceGestures.cpp @@ -5,8 +5,6 @@ * */ -#include "Gestures_precompiled.h" - #include "InputDeviceGestures.h" #include diff --git a/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp b/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp index 58e33d4e85..750b68b610 100644 --- a/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp +++ b/Gems/Gestures/Code/Tests/GestureRecognizerClickOrTapTests.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Gestures_precompiled.h" + #include #include #include diff --git a/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp b/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp index 7fce2db313..f93f6443a5 100644 --- a/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp +++ b/Gems/Gestures/Code/Tests/GestureRecognizerPinchTests.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: Apache-2.0 OR MIT * */ -#include "Gestures_precompiled.h" + #include #include #include diff --git a/Gems/Gestures/Code/gestures_files.cmake b/Gems/Gestures/Code/gestures_files.cmake index 3faf88eea7..38f40a8e23 100644 --- a/Gems/Gestures/Code/gestures_files.cmake +++ b/Gems/Gestures/Code/gestures_files.cmake @@ -6,7 +6,6 @@ # set(FILES - Source/Gestures_precompiled.h Include/Gestures/GestureRecognizerClickOrTap.h Include/Gestures/GestureRecognizerClickOrTap.inl Include/Gestures/GestureRecognizerDrag.h