boost::array -> std::array

This commit is contained in:
Dane Springmeyer 2014-01-26 13:44:30 -08:00
parent 8181aa9dec
commit 29e7b19007

View file

@ -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_;
};
}