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:
Artem Pavlenko 2011-12-17 11:41:24 +00:00
parent 855a2bd49b
commit 0aef7cc55a

View file

@ -43,6 +43,17 @@
//#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 karma = boost::spirit::karma;