remove dupe hash

This commit is contained in:
artemp 2015-06-18 10:57:03 +02:00
parent 5b1f0d3ba8
commit dd8394687d

View file

@ -76,17 +76,4 @@ std::size_t mapnik_hash_value(T const& val)
} // namespace mapnik
// support for std::unordered containers
namespace std
{
template <>
struct hash<mapnik::value>
{
size_t operator()(const mapnik::value& val) const
{
return mapnik::mapnik_hash_value(val);
}
};
#endif // MAPNIK_VALUE_HASH_HPP