summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoaderManager.cpp
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2014-12-11 22:47:56 +0100
committerdegasus <wickmarkus@web.de>2014-12-21 13:47:43 +0100
commit12817989926f8c4e7efe2da3880d1b182fa1a602 (patch)
treebaa9c9f58d6b7e517a27753fe6200620ce0ca23b /Source/Core/VideoCommon/VertexLoaderManager.cpp
parentec28a80e00ae6893b1a71c1e0538561df78665e5 (diff)
VertexLoaderUid: remove operator<
Not needed for unordered map.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderManager.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoaderManager.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp
index e1d0b194ef..1bfd05cace 100644
--- a/Source/Core/VideoCommon/VertexLoaderManager.cpp
+++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp
@@ -23,20 +23,6 @@
static NativeVertexFormat* s_current_vtx_fmt;
-namespace std
-{
-
-template <>
-struct hash<VertexLoaderUID>
-{
- size_t operator()(const VertexLoaderUID& uid) const
- {
- return uid.GetHash();
- }
-};
-
-}
-
typedef std::unordered_map<VertexLoaderUID, std::unique_ptr<VertexLoader>> VertexLoaderMap;
namespace VertexLoaderManager