geojson plugin: fix compile against boost 1.57

This commit is contained in:
Dane Springmeyer 2014-11-04 11:40:43 -05:00
parent 22bd30230a
commit a65987af31

View file

@ -73,7 +73,12 @@ struct options_type<geojson_linear<Max,Min> >
choose_by_content_diff_tag,
split_default_tag,
linear_tag,
#if BOOST_VERSION >= 105700
node_variant_static_tag>;
#else
node_s_mem_static_tag>;
#endif
};
}}}}}