From 3c0196bfb7344e7698fb824d592ef7d6812a3507 Mon Sep 17 00:00:00 2001 From: tigrazone Date: Sat, 9 Dec 2017 11:59:33 +0200 Subject: [PATCH] map vs unordered_map remake --- tiny_obj_loader.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tiny_obj_loader.h b/tiny_obj_loader.h index a87c8c1..666e5e9 100644 --- a/tiny_obj_loader.h +++ b/tiny_obj_loader.h @@ -363,9 +363,6 @@ void LoadMtl(std::map *material_map, #include #include -//tigra: unordered_map for hashed keywords -#include - #define TINYOBJLOADER_IMPLEMENTATION_BUFREAD @@ -561,7 +558,7 @@ enum tokens_enum { TOK_norm }; -std::unordered_map hashed_toks; +std::map hashed_toks;