os/ossrv/ossrv_pub/boost_apis/boost/throw_exception.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED
sl@0
     2
#define BOOST_THROW_EXCEPTION_HPP_INCLUDED
sl@0
     3
sl@0
     4
// MS compatible compilers support #pragma once
sl@0
     5
sl@0
     6
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
     7
# pragma once
sl@0
     8
#endif
sl@0
     9
sl@0
    10
//
sl@0
    11
//  boost/throw_exception.hpp
sl@0
    12
//
sl@0
    13
//  Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
sl@0
    14
//
sl@0
    15
// Distributed under the Boost Software License, Version 1.0. (See
sl@0
    16
// accompanying file LICENSE_1_0.txt or copy at
sl@0
    17
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    18
//
sl@0
    19
//  http://www.boost.org/libs/utility/throw_exception.html
sl@0
    20
//
sl@0
    21
sl@0
    22
#include <boost/config.hpp>
sl@0
    23
sl@0
    24
#ifdef BOOST_NO_EXCEPTIONS
sl@0
    25
# include <exception>
sl@0
    26
#endif
sl@0
    27
sl@0
    28
namespace boost
sl@0
    29
{
sl@0
    30
sl@0
    31
#ifdef BOOST_NO_EXCEPTIONS
sl@0
    32
sl@0
    33
void throw_exception(std::exception const & e); // user defined
sl@0
    34
sl@0
    35
#else
sl@0
    36
sl@0
    37
template<class E> inline void throw_exception(E const & e)
sl@0
    38
{    
sl@0
    39
//Adding this #if statement for WINSCW because currently winscw compiler does not support catching of const exception by non const catch blocks
sl@0
    40
//Once compiler starts supporting, this #if statement needs to be removed
sl@0
    41
#if ( defined __WINSCW__)
sl@0
    42
    E a = e;
sl@0
    43
    throw a;
sl@0
    44
#else
sl@0
    45
    throw e;
sl@0
    46
#endif
sl@0
    47
}
sl@0
    48
sl@0
    49
#endif
sl@0
    50
sl@0
    51
} // namespace boost
sl@0
    52
sl@0
    53
#endif // #ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED