aboutsummaryrefslogtreecommitdiff
#ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED
#define BOOST_THROW_EXCEPTION_HPP_INCLUDED

// MS compatible compilers support #pragma once

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif

//
//  boost/throw_exception.hpp
//
//  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 <boost/config.hpp>

#ifdef BOOST_NO_EXCEPTIONS
# include <exception>
#endif

namespace boost
{

#ifdef BOOST_NO_EXCEPTIONS

void throw_exception(std::exception const & e); // user defined

#else

template<class E> void throw_exception(E const & e)
{
    throw e;
}

#endif

} // namespace boost

#endif // #ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED
cm?id=ee3ce0d71d51d0b93d91a8ef1c82e8d233a74b33'>gnu: calibre: Update to 3.42.0....Danny Milosavljevic 2019-05-05gnu: calibre: Shorten long line....Brendan Tildesley 2019-05-05gnu: calibre: Install man pages....Brendan Tildesley 2019-05-05gnu: calibre: Delete various junk from source....Brendan Tildesley 2019-05-05gnu: calibre: Remove libxrender as an input....Brendan Tildesley 2019-05-05gnu: calibre: Unbundle python2-odfpy....Brendan Tildesley 2019-05-05gnu: calibre: Remove some comments....Brendan Tildesley 2019-05-05gnu: calibre: Enable tests....Brendan Tildesley 2019-05-05gnu: calibre: Disable sqlite test....Brendan Tildesley 2019-05-05gnu: calibre: Disable Qt test....Brendan Tildesley 2019-05-05gnu: calibre: Disable bs4 test....Brendan Tildesley 2019-05-05gnu: calibre: Use "linux.py" to install desktop files....Brendan Tildesley 2019-05-05gnu: calibre: Disable tests that require networking....Brendan Tildesley 2019-05-05gnu: calibre: Remove unrar test....Brendan Tildesley 2019-05-05gnu: calibre: Add python2-html2text as an input....Brendan Tildesley 2019-05-05gnu: calibre: Move font unbundling to after check phase....Brendan Tildesley 2019-05-05gnu: calibre: Add missing dependencies as indicated by tests....Brendan Tildesley 2019-05-05gnu: calibre: Build rapydscript....Brendan Tildesley 2019-05-05gnu: calibre: Use system mathjax....Brendan Tildesley 2019-05-05gnu: calibre: Update to 3.41.3....Brendan Tildesley 2019-01-23Merge branch 'master' into stagingRicardo Wurmus 2019-01-21gnu: calibre: Fix PDF to EPUB conversion....Mathieu Othacehe 2019-01-20Merge branch 'master' into stagingLudovic Courtès 2019-01-16gnu: Move sqlite to separate module....Ricardo Wurmus 2019-01-15gnu: Separate Python core packages from the rest....Ricardo Wurmus 2018-12-30gnu: fbreader: Install desktop file....Efraim Flashner 2018-12-30gnu: fbreader: Use 'git-fetch'....Efraim Flashner 2018-12-30gnu: fbreader: Fix building with newer curl....Efraim Flashner 2018-12-08gnu: calibre: Update to 3.35.0....Brendan Tildesley