diff --git a/include/mapnik/util/container_adapter.hpp b/include/mapnik/util/container_adapter.hpp index 79639c31a..17b077ae9 100644 --- a/include/mapnik/util/container_adapter.hpp +++ b/include/mapnik/util/container_adapter.hpp @@ -36,35 +36,35 @@ namespace boost { namespace spirit { namespace traits { - template <> - struct is_container : mpl::true_ {} ; +template <> +struct is_container : mpl::true_ {} ; - template <> - struct container_iterator - { - typedef mapnik::util::vertex_iterator type; - }; +template <> +struct container_iterator +{ + typedef mapnik::util::vertex_iterator type; +}; - template <> - struct begin_container - { - static mapnik::util::vertex_iterator - call (mapnik::geometry_type const& g) - { - return mapnik::util::vertex_iterator(g.data()); - } - }; +template <> +struct begin_container +{ + static mapnik::util::vertex_iterator + call (mapnik::geometry_type const& g) + { + return mapnik::util::vertex_iterator(g.data()); + } +}; - template <> - struct end_container - { - static mapnik::util::vertex_iterator - call (mapnik::geometry_type const& g) - { - return mapnik::util::vertex_iterator(); - } - }; +template <> +struct end_container +{ + static mapnik::util::vertex_iterator + call (mapnik::geometry_type const& g) + { + return mapnik::util::vertex_iterator(); + } +}; - }}} +}}} #endif // CONTAINER_ADAPTER_HPP