File indexing completed on 2025-01-18 09:50:07
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_PROCESS_DETAIL_TRAITS_ERROR_HPP_
0008 #define BOOST_PROCESS_DETAIL_TRAITS_ERROR_HPP_
0009
0010 #include <boost/process/detail/config.hpp>
0011 #include <system_error>
0012 #include <boost/process/detail/traits/decl.hpp>
0013
0014
0015
0016 namespace boost { namespace process { namespace detail {
0017
0018 struct error_tag;
0019
0020 template<>
0021 struct initializer_tag<std::error_code>;
0022
0023 }}}
0024
0025
0026
0027 #endif