VertexLoaderUid: remove operator<

Not needed for unordered map.
This commit is contained in:
degasus
2014-12-11 22:47:56 +01:00
parent ec28a80e00
commit 1281798992
3 changed files with 12 additions and 34 deletions

View File

@ -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