You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to compile geojson_impl.hpp with Visual Studio 2017 (64 bit), I am getting the following errors:
1>mapbox/geojson_impl.hpp(113): note: No constructor could take the source type, or constructor overload resolution was ambiguous
1>mapbox/geojson_impl.hpp(115): error C2440: 'return': cannot convert from 'bool' to 'mapbox::feature::value'
1>mapbox/geojson_impl.hpp(115): note: No constructor could take the source type, or constructor overload resolution was ambiguous
1>mapbox/geojson_impl.hpp(117): error C2440: 'return': cannot convert from 'bool' to 'mapbox::feature::value'
1>mapbox/geojson_impl.hpp(117): note: No constructor could take the source type, or constructor overload resolution was ambiguous
1>mapbox/geojson_impl.hpp(119): error C2440: 'return': cannot convert from 'mapbox::geojson::prop_map' to 'mapbox::feature::value'
1>mapbox/geojson_impl.hpp(119): note: No constructor could take the source type, or constructor overload resolution was ambiguous
1>mapbox/geojson_impl.hpp(121): error C2440: 'return': cannot convert from 'Cont' to 'mapbox::feature::value'
1> with
1> [
1> Cont=std::vector<mapbox::feature::value,std::allocator<mapbox::feature::value>>
1> ]
1>mapbox/geojson_impl.hpp(121): note: No constructor could take the source type, or constructor overload resolution was ambiguous
1>mapbox/geojson_impl.hpp(123): error C2440: 'return': cannot convert from 'std::string' to 'mapbox::feature::value'
1>mapbox/geojson_impl.hpp(123): note: No constructor could take the source type, or constructor overload resolution was ambiguous
1>mapbox/geojson_impl.hpp(127): error C2440: 'return': cannot convert from 'uint64_t' to 'mapbox::feature::value'
1>mapbox/geojson_impl.hpp(127): note: No constructor could take the source type, or constructor overload resolution was ambiguous
1>mapbox/geojson_impl.hpp(129): error C2440: 'return': cannot convert from 'int64_t' to 'mapbox::feature::value'
1>mapbox/geojson_impl.hpp(129): note: No constructor could take the source type, or constructor overload resolution was ambiguous
1>mapbox/geojson_impl.hpp(130): error C2440: 'return': cannot convert from 'double' to 'mapbox::feature::value'
1>mapbox/geojson_impl.hpp(130): note: No constructor could take the source type, or constructor overload resolution was ambiguous```
When trying to compile geojson_impl.hpp with Visual Studio 2017 (64 bit), I am getting the following errors: