1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef BOOST_PROCESS_EXCEPTION_HPP_
- #define BOOST_PROCESS_EXCEPTION_HPP_
- #include <system_error>
- #include <boost/process/v1/detail/config.hpp>
- namespace boost
- {
- namespace process
- {
- BOOST_PROCESS_V1_INLINE namespace v1
- {
- struct process_error : std::system_error
- {
- using std::system_error::system_error;
- };
- }
- }
- }
- #endif
|