]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/align/assume_aligned.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / align / assume_aligned.hpp
1 /*
2 Copyright 2015 NumScale SAS
3 Copyright 2015 LRI UMR 8623 CNRS/University Paris Sud XI
4
5 Copyright 2015 Glen Joseph Fernandes
6 (glenjofe@gmail.com)
7
8 Distributed under the Boost Software License, Version 1.0.
9 (http://www.boost.org/LICENSE_1_0.txt)
10 */
11 #ifndef BOOST_ALIGN_ASSUME_ALIGNED_HPP
12 #define BOOST_ALIGN_ASSUME_ALIGNED_HPP
13
14 #include <boost/config.hpp>
15
16 #if defined(BOOST_MSVC)
17 #include <boost/align/detail/assume_aligned_msvc.hpp>
18 #elif defined(BOOST_CLANG) && defined(__has_builtin)
19 #include <boost/align/detail/assume_aligned_clang.hpp>
20 #elif BOOST_GCC_VERSION >= 40700
21 #include <boost/align/detail/assume_aligned_gcc.hpp>
22 #elif defined(__INTEL_COMPILER)
23 #include <boost/align/detail/assume_aligned_intel.hpp>
24 #else
25 #include <boost/align/detail/assume_aligned.hpp>
26 #endif
27
28 #endif