Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

throw_exception.hpp 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // detail/throw_exception.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef ASIO_DETAIL_THROW_EXCEPTION_HPP
  11. #define ASIO_DETAIL_THROW_EXCEPTION_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include "asio/detail/config.hpp"
  16. #if defined(ASIO_HAS_BOOST_THROW_EXCEPTION)
  17. # include <boost/throw_exception.hpp>
  18. #endif // defined(ASIO_BOOST_THROW_EXCEPTION)
  19. namespace asio {
  20. namespace detail {
  21. #if defined(ASIO_HAS_BOOST_THROW_EXCEPTION)
  22. using boost::throw_exception;
  23. #else // defined(ASIO_HAS_BOOST_THROW_EXCEPTION)
  24. // Declare the throw_exception function for all targets.
  25. template <typename Exception>
  26. void throw_exception(const Exception& e);
  27. // Only define the throw_exception function when exceptions are enabled.
  28. // Otherwise, it is up to the application to provide a definition of this
  29. // function.
  30. # if !defined(ASIO_NO_EXCEPTIONS)
  31. template <typename Exception>
  32. void throw_exception(const Exception& e)
  33. {
  34. throw e;
  35. }
  36. # endif // !defined(ASIO_NO_EXCEPTIONS)
  37. #endif // defined(ASIO_HAS_BOOST_THROW_EXCEPTION)
  38. } // namespace detail
  39. } // namespace asio
  40. #endif // ASIO_DETAIL_THROW_EXCEPTION_HPP