diff options
author | paradust7 <102263465+paradust7@users.noreply.github.com> | 2022-05-18 03:31:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 12:31:49 +0200 |
commit | 273bfee9a193d0dd2e9f9b400add980c0b5202a7 (patch) | |
tree | 181c37777b1f742d1fde7048d99ffd7c4d321a48 /src/irrlicht_changes/CGUITTFont.h | |
parent | af37f9dc542e31f34d53da995ed86f2a3eacd9a5 (diff) | |
download | minetest-273bfee9a193d0dd2e9f9b400add980c0b5202a7.tar.gz minetest-273bfee9a193d0dd2e9f9b400add980c0b5202a7.tar.bz2 minetest-273bfee9a193d0dd2e9f9b400add980c0b5202a7.zip |
Use std::map instead of core::map (#12301)
Diffstat (limited to 'src/irrlicht_changes/CGUITTFont.h')
-rw-r--r-- | src/irrlicht_changes/CGUITTFont.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 <irrlicht.h> #include <ft2build.h> #include <vector> +#include <map> #include <irrUString.h> #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<io::path, SGUITTFace*> c_faces; + static std::map<io::path, SGUITTFace*> c_faces; static bool c_libraryLoaded; static scene::IMesh* shared_plane_ptr_; static scene::SMesh shared_plane_; |