now fix msvc compiler error. Why does msvc complain?
This commit is contained in:
parent
621ab99961
commit
5420ccd6af
3 changed files with 3 additions and 3 deletions
|
@ -59,7 +59,7 @@ struct geometry : geometry_base<T>
|
|||
{
|
||||
using coordinate_type = T;
|
||||
|
||||
#if __cpp_inheriting_constructors >= 200802
|
||||
#if __cpp_inheriting_constructors >= 200802 && !defined (_MSC_VER)
|
||||
|
||||
using geometry_base<T>::geometry_base;
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ using geojson_value_base = mapnik::util::variant<value_null,
|
|||
geojson_object>;
|
||||
struct geojson_value : geojson_value_base
|
||||
{
|
||||
#if __cpp_inheriting_constructors >= 200802
|
||||
#if __cpp_inheriting_constructors >= 200802 && !defined (_MSC_VER)
|
||||
|
||||
using geojson_value_base::geojson_value_base;
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ using json_value_base = mapnik::util::variant<value_null,
|
|||
json_object>;
|
||||
struct json_value : json_value_base
|
||||
{
|
||||
#if __cpp_inheriting_constructors >= 200802
|
||||
#if __cpp_inheriting_constructors >= 200802 && !defined (_MSC_VER)
|
||||
|
||||
using json_value_base::json_value_base;
|
||||
|
||||
|
|
Loading…
Reference in a new issue