summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoader.cpp
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2014-08-27 22:37:08 -0400
committercomex <comexk@gmail.com>2014-09-28 21:23:29 -0400
commit90638c6806ac2c92b211e41b2abd257b4266f488 (patch)
tree0cdf067b497948c30d1d6c1a14927445b0e0fa0f /Source/Core/VideoCommon/VertexLoader.cpp
parentf8452ff50103a503546e57ec8c6fc7fd5fa92a29 (diff)
Switch to an unordered_map as a micro-optimization.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader.cpp b/Source/Core/VideoCommon/VertexLoader.cpp
index ebc57d8577..ab78e85f9e 100644
--- a/Source/Core/VideoCommon/VertexLoader.cpp
+++ b/Source/Core/VideoCommon/VertexLoader.cpp
@@ -1051,4 +1051,4 @@ NativeVertexFormat* VertexLoader::GetNativeVertexFormat()
}
-std::map<PortableVertexDeclaration, std::unique_ptr<NativeVertexFormat>> VertexLoader::s_native_vertex_map;
+std::unordered_map<PortableVertexDeclaration, std::unique_ptr<NativeVertexFormat>> VertexLoader::s_native_vertex_map;