123456789101112131415161718192021 |
- #ifndef BOOST_NUMERIC_ODEINT_TOOLS_IS_STANDALONE_HPP
- #define BOOST_NUMERIC_ODEINT_TOOLS_IS_STANDALONE_HPP
- #ifdef __has_include
- #if !__has_include(<boost/config.hpp>) || !__has_include(<boost/assert.hpp>) || !__has_include(<boost/lexical_cast.hpp>) || \
- !__has_include(<boost/throw_exception.hpp>) || !__has_include(<boost/predef/other/endian.h>)
- # ifndef BOOST_NUMERIC_ODEINT_STANDALONE
- # define BOOST_NUMERIC_ODEINT_STANDALONE
- # endif
- #endif
- #endif
- #endif
|