1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-25 13:45:23 +02:00

Use std::map instead of core::map (#12301)

This commit is contained in:
paradust7
2022-05-18 03:31:49 -07:00
committed by GitHub
parent af37f9dc54
commit 273bfee9a1
4 changed files with 25 additions and 27 deletions

View File

@@ -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_;