Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:42:51

0001 /*
0002 Copyright 2015 NumScale SAS
0003 Copyright 2015 LRI UMR 8623 CNRS/University Paris Sud XI
0004 
0005 Copyright 2015 Glen Joseph Fernandes
0006 (glenjofe@gmail.com)
0007 
0008 Distributed under the Boost Software License, Version 1.0.
0009 (http://www.boost.org/LICENSE_1_0.txt)
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