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
303b865401ecbc0a530cae21'>gnu: git-annex: Update to 10.20230926....* gnu/packages/haskell-apps.scm (git-annex): Update to 10.20230926. [inputs]: Add ghc-git-lfs. Change-Id: Ic7a1f246e51df2ff153a630d3ebbb9883b63a2d1 Efraim Flashner 2023-11-19gnu: git-annex: Add shell completions....* gnu/packages/haskell-apps.scm (git-annex)[arguments]: Rename 'install-manpages to 'install-more and install the shell completions. Change-Id: I3c5707037ba9b3c3903dd37c334c1eb6dca929e2 Efraim Flashner 2023-11-19gnu: git-annex: Install manpages....* gnu/packages/haskell-apps.scm (git-annex)[source]: Download using git-fetch. [arguments]: Rewrite 'build-manpages and 'install-manpages to use the Makefile. Change-Id: I58e58382e6d8c57830aa5ddb40f02cf949089aa1 Efraim Flashner 2023-09-19gnu: git-annex: Update to 10.20230828....* gnu/packages/haskell-apps.scm (git-annex): Update to 10.20230828. Efraim Flashner