[redcode/crythread-2nd-pass] fixed missing includes

Signed-off-by: AMZN-ScottR <24445312+AMZN-ScottR@users.noreply.github.com>
This commit is contained in:
AMZN-ScottR
2021-08-11 12:59:32 -07:00
parent 6f2b7baae8
commit ce7598c10b
4 changed files with 5 additions and 1 deletions
@@ -10,6 +10,7 @@
#include <AzCore/Debug/StackTracer.h>
#include <AzCore/IO/SystemFile.h> // for AZ_MAX_PATH_LEN
#include <AzCore/Math/Vector2.h>
#include <CryLibrary.h>
@@ -11,6 +11,8 @@
#include <../Common/Apple/Launcher_Apple.h>
#include <../Common/UnixLike/Launcher_UnixLike.h>
#include <AzCore/Math/Vector2.h>
#if AZ_TESTS_ENABLED
int main(int argc, char* argv[])
+1
View File
@@ -14,6 +14,7 @@
#define CRYINCLUDE_CRYCOMMON_VECTORMAP_H
#pragma once
#include <StlUtils.h> // for stl::free_container
//--------------------------------------------------------------------------
// VectorMap
@@ -96,7 +96,7 @@ namespace AZ
void UnregisterFont(const char* fontName);
private:
using FontMap = std::unordered_map<AzFramework::FontId, FFont*>;
using FontMap = AZStd::unordered_map<AzFramework::FontId, FFont*>;
using FontMapItor = FontMap::iterator;
using FontMapConstItor = FontMap::const_iterator;