12345678910111213141516171819202122 |
- #ifndef BOOST_MATH_TOOLS_THROW_EXCEPTION_HPP
- #define BOOST_MATH_TOOLS_THROW_EXCEPTION_HPP
- #include <boost/math/tools/is_standalone.hpp>
- #ifndef BOOST_MATH_STANDALONE
- #include <boost/throw_exception.hpp>
- #define BOOST_MATH_THROW_EXCEPTION(expr) boost::throw_exception(expr);
- #else
- #define BOOST_MATH_THROW_EXCEPTION(expr) throw expr;
- #endif
- #endif
|