#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 table>
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-10-21build-system: Add zig-build-system....Ekaitz Zarraga
2023-10-15etc: snippets: Do not match unintended quotes....Liliana Marie Prikler
2023-04-19snippets: tempel: Simplify git-commit-mode detection....Nicolas Graves
2023-03-05etc: Default to variables in tempel's git-reference... et al....Liliana Marie Prikler
2023-02-19etc: Add a news entry snippet....Maxim Cournoyer
2022-12-27snippets: Remove unwanted git-commit-mode invocation....Andrew Tropin
2022-11-28snippets: yas: Add snippets for vc.el...Morgan Smith
2022-10-22snippets: Harden for review activity....Liliana Marie Prikler
2022-10-06snippets: Fix move....Liliana Marie Prikler
2022-10-06snippets: tempel: Reformat....Liliana Marie Prikler
2022-10-06snippets: tempel: Fix calls to mapconcat....Liliana Marie Prikler
2022-09-26etc: Add tempel snippet move....Nicolas Graves