boost::array -> std::array
This commit is contained in:
parent
8181aa9dec
commit
29e7b19007
1 changed files with 1 additions and 2 deletions
|
@ -38,7 +38,6 @@
|
|||
// fusion
|
||||
#include <boost/fusion/include/at_c.hpp>
|
||||
#include <boost/fusion/container/vector.hpp>
|
||||
#include <boost/array.hpp>
|
||||
|
||||
// mapnik
|
||||
#include <mapnik/agg_helpers.hpp>
|
||||
|
@ -320,7 +319,7 @@ struct dispatcher
|
|||
dispatch<begin,end,Geometry>(geom, boost::false_type());
|
||||
}
|
||||
|
||||
boost::array<unsigned, boost::mpl::size<conv_types>::value> vec_;
|
||||
std::array<unsigned, boost::mpl::size<conv_types>::value> vec_;
|
||||
args_type args_;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue