#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 #ifdef BOOST_NO_EXCEPTIONS # include #endif namespace boost { #ifdef BOOST_NO_EXCEPTIONS void throw_exception(std::exception const & e); // user defined #else template void throw_exception(E const & e) { throw e; } #endif } // namespace boost #endif // #ifndef BOOST_THROW_EXCEPTION_HPP_INCLUDED ub right'>
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-08-10gnu: aspell: Fix CVE-2019-25051 with a graft....This partially reverts commit 468c95e9415bc303cfa36c9b67bbd2ce0abe904b in order to prevent rebuilding 2k+ packages via 'inkscape'. * gnu/packages/aspell.scm (aspell)[replacement]: New field. [source](patches): Remove "aspell-CVE-2019-25051.patch". (aspell/replacement): New private variable. Marius Bakke
2022-08-09gnu: aspell: Patch CVE-2019-25051....* gnu/packages/aspell.scm (aspell)[source]: Add patch. * gnu/packages/patches/aspell-CVE-2019-25051.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. Efraim Flashner
2022-05-01gnu: ispell: Update to 3.4.05....* gnu/packages/aspell.scm (ispell): Update to 3.4.05. [arguments]: Don't explicitly return #t from phases. Tobias Geerinckx-Rice
2022-01-14gnu: aspell-dictionary: Try to find new releases....* gnu/packages/aspell.scm (aspell-dictionary)[properties]: New field. Efraim Flashner