#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 right'>
aboutsummaryrefslogtreecommitdiff
-avail'>... e88223c7'>daemon: Make 'profiles/per-user' non-world-writable....
AgeCommit message (Expand)Author
2016-01-17gnu: rsync: Update to 3.1.2....Mark H Weaver
2015-03-04gnu: Move 'which' to (gnu packages base)....Ludovic Courtès
2014-10-26gnu: Some cleanup based on lint checkers....Eric Bavier
2014-05-27gnu: librsync: Fix source uri...Eric Bavier
2014-05-25gnu: Add librsync....Eric Bavier
2013-10-25gnu: rsync: Update to 3.1.0....Andreas Enge
Bruno Victal
Ludovic Courtès
2019-09-16daemon: Include 'config.h' in 'nix-daemon.cc'....Timothy Sample
2019-09-08daemon: Run 'guix substitute' directly and assume a single substituter....Ludovic Courtès
2019-09-08daemon: Run 'guix offload' directly....Ludovic Courtès