provide attribute customization point :
template <> struct is_container<mapnik::geometry_container> : mpl::false_ {}; TODO: This is somewhat non-intuitive in this context but keeps gcc and darwin toolsets happy.
This commit is contained in:
parent
855a2bd49b
commit
0aef7cc55a
1 changed files with 11 additions and 0 deletions
|
@ -43,6 +43,17 @@
|
||||||
|
|
||||||
//#define BOOST_SPIRIT_USE_PHOENIX_V3 1
|
//#define BOOST_SPIRIT_USE_PHOENIX_V3 1
|
||||||
|
|
||||||
|
namespace boost { namespace spirit { namespace traits {
|
||||||
|
|
||||||
|
// make gcc and darwin toolsets happy.
|
||||||
|
template <>
|
||||||
|
struct is_container<mapnik::geometry_container>
|
||||||
|
: mpl::false_
|
||||||
|
{};
|
||||||
|
|
||||||
|
}}}
|
||||||
|
|
||||||
|
|
||||||
namespace mapnik { namespace util {
|
namespace mapnik { namespace util {
|
||||||
|
|
||||||
namespace karma = boost::spirit::karma;
|
namespace karma = boost::spirit::karma;
|
||||||
|
|
Loading…
Reference in a new issue