Boost::unordered is better than std::unordered, apparently

This commit is contained in:
Lirusaito
2019-03-27 22:28:29 -04:00
parent 6d1e9ee3d4
commit 90e9bce8de
13 changed files with 37 additions and 36 deletions

View File

@@ -30,7 +30,7 @@
#include "lluuid.h"
#include "llmd5.h"
#include <string>
#include <unordered_map>
#include <boost/unordered_map.hpp>
#include <vector>
class LLViewerInventoryCategory;
@@ -285,7 +285,7 @@ protected:
LLUUID mCatID;
};
typedef std::unordered_map<LLUUID, LLCategoryData> category_map_t;
typedef boost::unordered_map<LLUUID, LLCategoryData> category_map_t;
typedef category_map_t::value_type category_map_value_t;
category_map_t mCategoryMap;