upgrade to latest variant - refs mapbox/variant#73

This commit is contained in:
Dane Springmeyer 2016-01-29 15:54:15 -08:00
parent b3170c397c
commit bc89f7f877
2 changed files with 2 additions and 2 deletions

2
deps/mapbox/variant vendored

@ -1 +1 @@
Subproject commit 7f7c667f870541c208c07d99a9f2c22dfa1f32de
Subproject commit c4e864cc122c4fcc9b1f7a8f68a34e465df9f922

View file

@ -68,7 +68,7 @@ template <typename T>
std::size_t mapnik_hash_value(T const& val)
{
std::size_t seed = util::apply_visitor(detail::value_hasher(), val);
detail::hash_combine(seed, val.get_type_index());
detail::hash_combine(seed, val.which());
return seed;
}