Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / gil / io / get_read_device.hpp
index 37eeff7..ea21fac 100644 (file)
@@ -8,11 +8,10 @@
 #ifndef BOOST_GIL_IO_GET_READ_DEVICE_HPP
 #define BOOST_GIL_IO_GET_READ_DEVICE_HPP
 
+#include <boost/gil/detail/mp11.hpp>
 #include <boost/gil/io/device.hpp>
 #include <boost/gil/io/path_spec.hpp>
 
-#include <boost/mpl/and.hpp>
-
 #include <type_traits>
 
 namespace boost { namespace gil {
@@ -31,7 +30,7 @@ struct get_read_device
     FormatTag,
     typename std::enable_if
     <
-        mpl::and_
+        mp11::mp_and
         <
             detail::is_adaptable_input_device<FormatTag, Device>,
             is_format_tag<FormatTag>
@@ -53,7 +52,7 @@ struct get_read_device
     FormatTag,
     typename std::enable_if
     <
-        mpl::and_
+        mp11::mp_and
         <
             detail::is_supported_path_spec<String>,
             is_format_tag<FormatTag>