2018-01-12 21:47:58 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright 2016 John Maddock. 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)
|
|
|
|
|
|
|
|
#include <boost/throw_exception.hpp>
|
|
|
|
#include <boost/config.hpp>
|
|
|
|
|
|
|
|
#ifdef BOOST_NO_EXCEPTIONS
|
|
|
|
|
|
|
|
#include <iostream>
|
2021-10-05 21:37:46 +02:00
|
|
|
#include <iomanip>
|
2018-01-12 21:47:58 +01:00
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
|
2021-10-05 21:37:46 +02:00
|
|
|
void throw_exception(std::exception const& e)
|
|
|
|
{
|
|
|
|
std::cerr << "Terminating with exception: " << e.what() << std::endl;
|
2018-01-12 21:47:58 +01:00
|
|
|
}
|
|
|
|
|
2021-10-05 21:37:46 +02:00
|
|
|
} // namespace boost
|
|
|
|
|
2018-01-12 21:47:58 +01:00
|
|
|
#else
|
|
|
|
|
2021-10-05 21:37:46 +02:00
|
|
|
namespace boost { namespace detail {
|
|
|
|
void dummy_proc() {}
|
|
|
|
}} // namespace boost::detail
|
2018-01-12 21:47:58 +01:00
|
|
|
|
|
|
|
#endif
|