123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_PROCESS_EXCEPTION_HPP_
- #define BOOST_PROCESS_EXCEPTION_HPP_
- #include <system_error>
- namespace boost
- {
- namespace process
- {
- struct process_error : std::system_error
- {
- using std::system_error::system_error;
- };
- }
- }
- #endif
|