Replaced std::map with std::unordered_map

Not possible yet with NzString-key map


Former-commit-id: faa628a1c9c10e7bc009bf5a67e112ad5f873bd8
This commit is contained in:
Lynix
2013-02-17 14:08:12 +01:00
parent 2e4c27188f
commit 857d2dd9ed
6 changed files with 8 additions and 8 deletions

View File

@@ -5,7 +5,6 @@
#include <Nazara/Utility/PixelFormat.hpp>
#include <Nazara/Core/Endianness.hpp>
#include <Nazara/Core/Error.hpp>
#include <Nazara/Core/Error.hpp>
#include <Nazara/Utility/Debug.hpp>
namespace

View File

@@ -9,7 +9,7 @@
struct NzSkeletonImpl
{
std::map<NzString, unsigned int> jointMap;
std::map<NzString, unsigned int> jointMap; ///FIXME: unordered_map
std::vector<NzJoint> joints;
NzAxisAlignedBox aabb;
bool jointMapUpdated = false;