Remove a bit of unneeded & unused code.

master
Rogier 2016-06-17 10:05:11 +02:00
parent 6a4c2aeb02
commit 4d07f06362
1 changed files with 0 additions and 3 deletions

View File

@ -139,9 +139,6 @@ struct NodeCoordHashed : NodeCoord
private:
size_t m_hash;
public:
struct Hash {
size_t operator()(const NodeCoordHashed &h) const { return h.hash(); }
};
NodeCoordHashed(const BlockPos &pos) : NodeCoord(pos) { rehash(); }
NodeCoordHashed(const NodeCoord &coord) : NodeCoord(coord) { rehash(); }
void rehash(void) { m_hash = NodeCoord::hash(); }