fix compiler warning
```include/mapnik/text/symbolizer_helpers.hpp:164:45: warning: template template parameter using 'typename' is a C++17 extension [-Wc++17-extensions] template <template <typename, typename> typename GridAdapter> ^~~~~~~~ class ```
This commit is contained in:
parent
abce91a180
commit
5b8b75e680
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ public:
|
|||
protected:
|
||||
void init_converters();
|
||||
void initialize_points() const;
|
||||
template <template <typename, typename> typename GridAdapter>
|
||||
template <template <typename, typename> class GridAdapter>
|
||||
void initialize_grid_points() const;
|
||||
bool next_point_placement() const;
|
||||
bool next_line_placement() const;
|
||||
|
|
Loading…
Reference in a new issue