// // boost/assert.hpp - BOOST_ASSERT(expr) // // Copyright (c) 2001, 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. // // Note: There are no include guards. This is intentional. // // See http://www.boost.org/libs/utility/assert.html for documentation. // #undef BOOST_ASSERT #if defined(BOOST_DISABLE_ASSERTS) # define BOOST_ASSERT(expr) ((void)0) #elif defined(BOOST_ENABLE_ASSERT_HANDLER) #include namespace boost { void assertion_failed(char const * expr, char const * function, char const * file, long line); // user defined } // namespace boost #define BOOST_ASSERT(expr) ((expr)? ((void)0): ::boost::assertion_failed(#expr, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__)) #else # include # define BOOST_ASSERT(expr) assert(expr) #endif bs'> aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-05-25gnu: valgrind: Mark as not supported for armhf-linux....Christopher Baines
2023-04-26gnu: valgrind: Update to 3.20.0....zimoun
2023-04-14gnu: valgrind/interactive: Rely on non-stripped glibc symbols....Maxim Cournoyer
2023-02-09gnu: Remove valgrind-3.20....Simon Tournier
2022-11-11gnu: valgrind: Add version 3.20.0....Ludovic Courtès
2022-05-09gnu: valgrind: Remove input labels....Ludovic Courtès
2022-05-09gnu: valgrind: Allow ld.so symbols to be found....Denis 'GNUtoo' Carikli
2022-05-09gnu: valgrind: Sort imports alphabetically....Denis 'GNUtoo' Carikli
2022-02-16gnu: valgrind: Remove riscv64-linux from supported-systems....Efraim Flashner
2022-01-28gnu: valgrind: Add version 3.18.1....Ludovic Courtès