blob: 3223b56466659b652c22d2e1b9f2d1ae39eb1e55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef BOOST_THROW_EXCEPTION_H_INCLUDED
#define BOOST_THROW_EXCEPTION_H_INCLUDED
//
// boost/throw_exception.h
//
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
//
// Permission to copy, use, modify, sell and distribute this software
// is granted provided this copyright notice appears in all copies.
// This software is provided "as is" without express or implied
// warranty, and with no claim as to its suitability for any purpose.
//
// http://www.boost.org/libs/utility/throw_exception.html
//
# include <exception>
namespace myboost
{
template<class E> void throw_exception(E const & e)
{
throw e;
}
} // namespace myboost
#endif // #ifndef BOOST_THROW_EXCEPTION_H_INCLUDED
|