mirror of
https://github.com/boostorg/throw_exception.git
synced 2025-07-23 09:07:31 +02:00
31 lines
674 B
C++
31 lines
674 B
C++
![]() |
// Copyright 2019, 2022 Peter Dimov
|
||
|
// Distributed under the Boost Software License, Version 1.0.
|
||
|
// http://www.boost.org/LICENSE_1_0.txt
|
||
|
|
||
|
#if defined(_MSC_VER)
|
||
|
# pragma warning(disable: 4702) // unreachable code
|
||
|
# pragma warning(disable: 4577) // noexcept used without /EHsc
|
||
|
# pragma warning(disable: 4530) // C++ exception handler used
|
||
|
#endif
|
||
|
|
||
|
#include <boost/throw_exception.hpp>
|
||
|
#include <cstdlib>
|
||
|
|
||
|
class my_exception: public std::exception {};
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
boost::throw_with_location( my_exception() );
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
namespace boost
|
||
|
{
|
||
|
|
||
|
void throw_exception( std::exception const &, boost::source_location const & )
|
||
|
{
|
||
|
std::exit( 0 );
|
||
|
}
|
||
|
|
||
|
} // namespace boost
|