Warning fixes.

This commit is contained in:
Tleety
2016-02-08 16:02:23 +01:00
parent 0a43f8104e
commit f3aba6748b
12 changed files with 30 additions and 30 deletions
@@ -11,7 +11,7 @@ struct std::hash<glm::ivec2>
{
inline std::size_t operator()(const glm::ivec2 &v) const
{
return boost::hash<float>()(v.x) ^ boost::hash<float>()(v.y);
return boost::hash<int>()(v.x) ^ boost::hash<int>()(v.y);
}
inline bool operator()(const glm::ivec2& a, const glm::ivec2& b)const