]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/exception/test/2-throw_exception_no_exceptions_test.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / exception / test / 2-throw_exception_no_exceptions_test.cpp
CommitLineData
7c673cae
FG
1//Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2
3//Distributed under the Boost Software License, Version 1.0. (See accompanying
4//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6#define BOOST_NO_EXCEPTIONS
7#include <boost/throw_exception.hpp>
7c673cae
FG
8
9class my_exception: public std::exception { };
10
7c673cae
FG
11namespace
12boost
13 {
14 void
15 throw_exception( std::exception const & )
16 {
92f5a8d4 17 exit(0);
7c673cae
FG
18 }
19 }
20
21int
22main()
23 {
24 boost::throw_exception(my_exception());
92f5a8d4 25 return 1;
7c673cae 26 }