Compare commits

..

9 Commits

Author SHA1 Message Date
452f58496e Release
[SVN r43921]
2008-03-29 11:50:24 +00:00
12029f86ba Starting point for releases
[SVN r39706]
2007-10-05 14:25:06 +00:00
fb54e7da5d This commit was manufactured by cvs2svn to create tag
'Version_1_34_1'.

[SVN r38286]
2007-07-24 19:28:14 +00:00
1e7a50ca2a This commit was manufactured by cvs2svn to create branch 'RC_1_34_0'.
[SVN r33417]
2006-03-21 02:26:31 +00:00
ae714358ad fixes comeau bug
[SVN r24278]
2004-08-04 05:15:01 +00:00
98c7eb7d68 Converted to Boost Software License, Version 1.0
[SVN r24055]
2004-07-26 00:32:12 +00:00
17f806e8a7 _MSC_VER use clarified.
[SVN r20992]
2003-11-28 15:35:21 +00:00
d1e4951cd5 -Wundef fixes.
[SVN r18788]
2003-06-12 17:09:24 +00:00
2f59c2a05e boost::throw_exception documentation added.
[SVN r16239]
2002-11-14 15:13:59 +00:00

View File

@ -1,8 +1,10 @@
#ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED
#define BOOST_THROW_EXCEPTION_HPP_INCLUDED
#if _MSC_VER >= 1020
#pragma once
// MS compatible compilers support #pragma once
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif
//
@ -10,10 +12,11 @@
//
// 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.
// 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)
//
// http://www.boost.org/libs/utility/throw_exception.html
//
#include <boost/config.hpp>
@ -31,7 +34,7 @@ void throw_exception(std::exception const & e); // user defined
#else
template<class E> void throw_exception(E const & e)
template<class E> inline void throw_exception(E const & e)
{
throw e;
}