brintos

brintos / llvm-project-archived public Read only

0
0
Text · 696 B · 343bbc2 Raw
19 lines · plain
1//  Copyright Matt Borland 2021.2//  Use, modification and distribution are subject to the3//  Boost Software License, Version 1.0. (See accompanying file4//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)5 6#ifndef BOOST_MATH_TOOLS_IS_STANDALONE_HPP7#define BOOST_MATH_TOOLS_IS_STANDALONE_HPP8 9#ifdef __has_include10#if !__has_include(<boost/config.hpp>) || !__has_include(<boost/assert.hpp>) || !__has_include(<boost/lexical_cast.hpp>) || \11    !__has_include(<boost/throw_exception.hpp>) || !__has_include(<boost/predef/other/endian.h>)12#   ifndef BOOST_MATH_STANDALONE13#       define BOOST_MATH_STANDALONE14#   endif15#endif16#endif17 18#endif // BOOST_MATH_TOOLS_IS_STANDALONE_HPP19