Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / gil / io / get_write_device.hpp
index 228b84a..2aac53d 100644 (file)
@@ -8,11 +8,10 @@
 #ifndef BOOST_GIL_IO_GET_WRITE_DEVICE_HPP
 #define BOOST_GIL_IO_GET_WRITE_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 {
@@ -27,7 +26,7 @@ struct get_write_device
     FormatTag,
     typename std::enable_if
     <
-        mpl::and_
+        mp11::mp_and
         <
             detail::is_adaptable_output_device<FormatTag, Device>,
             is_format_tag<FormatTag>
@@ -46,7 +45,7 @@ struct get_write_device
     FormatTag,
     typename std::enable_if
     <
-        mpl::and_
+        mp11::mp_and
         <
             detail::is_supported_path_spec<String>,
             is_format_tag<FormatTag>