Revert "workaround msvs variant init bug"

This reverts commit be44b647fa.
This commit is contained in:
Dane Springmeyer 2014-09-04 09:22:43 -07:00
parent 98c881432a
commit c30f1715e6

View file

@ -814,9 +814,7 @@ public:
template <typename T>
value ( T const& val)
: base_() {
base_ = static_cast<typename detail::mapnik_value_type<T>::type>(val);
}
: base_(typename detail::mapnik_value_type<T>::type(val)) {}
value (value const& other)
: base_(other.base_) {}