1 /*
2 (c) 2015 NumScale SAS
3 (c) 2015 LRI UMR 8623 CNRS/University Paris Sud XI
4 
5 (c) 2015 Glen Joseph Fernandes
6 glenjofe at gmail dot com
7 
8 Distributed under the Boost Software
9 License, Version 1.0.
10 http://boost.org/LICENSE_1_0.txt
11 */
12 #ifndef BOOST_ALIGN_ASSUME_ALIGNED_HPP
13 #define BOOST_ALIGN_ASSUME_ALIGNED_HPP
14 
15 #include <boost/config.hpp>
16 
17 #if defined(BOOST_MSVC)
18 #include <boost/align/detail/assume_aligned_msvc.hpp>
19 #elif defined(BOOST_CLANG)
20 #include <boost/align/detail/assume_aligned_clang.hpp>
21 #elif BOOST_GCC_VERSION >= 40700
22 #include <boost/align/detail/assume_aligned_gcc.hpp>
23 #elif defined(__INTEL_COMPILER)
24 #include <boost/align/detail/assume_aligned_intel.hpp>
25 #else
26 #include <boost/align/detail/assume_aligned.hpp>
27 #endif
28 
29 #endif
30