Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / gil / extension / toolbox / color_spaces / xyz.hpp
index c06e199..ca3bd05 100644 (file)
@@ -10,8 +10,7 @@
 
 #include <boost/gil/color_convert.hpp>
 #include <boost/gil/typedefs.hpp>
-
-#include <boost/mpl/vector.hpp>
+#include <boost/gil/detail/mp11.hpp>
 
 namespace boost{ namespace gil {
 
@@ -29,12 +28,12 @@ struct z_t {};
 /// \}
 
 /// \ingroup ColorSpaceModel
-using xyz_t = mpl::vector3
-    <
-        xyz_color_space::x_t,
-        xyz_color_space::y_t,
-        xyz_color_space::z_t
-    >;
+using xyz_t = mp11::mp_list
+<
+    xyz_color_space::x_t,
+    xyz_color_space::y_t,
+    xyz_color_space::z_t
+>;
 
 /// \ingroup LayoutModel
 using xyz_layout_t = layout<xyz_t>;