12345678910111213141516171819202122232425 |
- #ifndef BOOST_PROCESS_DETAIL_TRAITS_ERROR_HPP_
- #define BOOST_PROCESS_DETAIL_TRAITS_ERROR_HPP_
- #include <boost/process/v1/detail/config.hpp>
- #include <system_error>
- #include <boost/process/v1/detail/traits/decl.hpp>
- namespace boost { namespace process { BOOST_PROCESS_V1_INLINE namespace v1 { namespace detail {
- struct error_tag;
- template<>
- struct initializer_tag<std::error_code>;
- }}}}
- #endif
|