Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-17 08:25:25

0001 /*
0002 Copyright 2025 Glen Joseph Fernandes
0003 (glenjofe@gmail.com)
0004 
0005 Distributed under the Boost Software License, Version 1.0.
0006 (http://www.boost.org/LICENSE_1_0.txt)
0007 */
0008 #undef BOOST_CORE_DETAIL_ASSERT
0009 
0010 #if !defined(__clang__) && \
0011     !defined(__INTEL_COMPILER) && \
0012     defined(__GNUC__) && \
0013     (__GNUC__ < 5)
0014 #define BOOST_CORE_DETAIL_ASSERT(expr) void(0)
0015 #else
0016 #include <boost/assert.hpp>
0017 #define BOOST_CORE_DETAIL_ASSERT(expr) BOOST_ASSERT(expr)
0018 #endif