// Copyright (c) 2022 Klemens D. Morgenstern // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_PROCESS_V2_DETAIL_THROW_EXCEPTION_HPP #define BOOST_PROCESS_V2_DETAIL_THROW_EXCEPTION_HPP #include #if !defined(BOOST_PROCESS_V2_STANDALONE) #include #endif BOOST_PROCESS_V2_BEGIN_NAMESPACE namespace detail { #if defined(BOOST_PROCESS_V2_STANDALONE) template inline void throw_exception(const Exception& e) { throw e; } #else using boost::throw_exception; #endif } BOOST_PROCESS_V2_END_NAMESPACE #endif //BOOST_PROCESS_V2_DETAIL_THROW_EXCEPTION_HPP