From 273bfee9a193d0dd2e9f9b400add980c0b5202a7 Mon Sep 17 00:00:00 2001 From: paradust7 <102263465+paradust7@users.noreply.github.com> Date: Wed, 18 May 2022 03:31:49 -0700 Subject: Use std::map instead of core::map (#12301) --- src/irrlicht_changes/CGUITTFont.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/irrlicht_changes/CGUITTFont.h') diff --git a/src/irrlicht_changes/CGUITTFont.h b/src/irrlicht_changes/CGUITTFont.h index 7b04ae828..9457e5b18 100644 --- a/src/irrlicht_changes/CGUITTFont.h +++ b/src/irrlicht_changes/CGUITTFont.h @@ -34,6 +34,7 @@ #include #include #include +#include #include #include "util/enriched_string.h" #include FT_FREETYPE_H @@ -345,7 +346,7 @@ namespace gui private: // Manages the FreeType library. static FT_Library c_library; - static core::map c_faces; + static std::map c_faces; static bool c_libraryLoaded; static scene::IMesh* shared_plane_ptr_; static scene::SMesh shared_plane_; -- cgit v1.2.3