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

@ -28,7 +28,7 @@ class SWVertexLoader
bool m_TexGenSpecialCase;
std::map<VertexLoaderUID, std::unique_ptr<VertexLoader>> m_VertexLoaderMap;
std::unordered_map<VertexLoaderUID, std::unique_ptr<VertexLoader>> m_VertexLoaderMap;
std::vector<u8> m_LoadedVertices;
VertexLoader* m_CurrentLoader;