File indexing completed on 2025-12-16 09:42:51
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_ALIGN_ASSUME_ALIGNED_HPP
0012 #define BOOST_ALIGN_ASSUME_ALIGNED_HPP
0013
0014 #include <boost/config.hpp>
0015
0016 #if defined(BOOST_MSVC)
0017 #include <boost/align/detail/assume_aligned_msvc.hpp>
0018 #elif defined(BOOST_CLANG) && defined(__has_builtin)
0019 #include <boost/align/detail/assume_aligned_clang.hpp>
0020 #elif BOOST_GCC_VERSION >= 40700
0021 #include <boost/align/detail/assume_aligned_gcc.hpp>
0022 #elif defined(__INTEL_COMPILER)
0023 #include <boost/align/detail/assume_aligned_intel.hpp>
0024 #else
0025 #include <boost/align/detail/assume_aligned.hpp>
0026 #endif
0027
0028 #endif