]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/align/detail/assume_aligned_intel.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / align / detail / assume_aligned_intel.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_DETAIL_ASSUME_ALIGNED_INTEL_HPP
12 #define BOOST_ALIGN_DETAIL_ASSUME_ALIGNED_INTEL_HPP
13
14 #define BOOST_ALIGN_ASSUME_ALIGNED(ptr, alignment) \
15 __assume_aligned((ptr), (alignment))
16
17 #endif