]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/align/include/boost/align/detail/assume_aligned_gcc.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / align / include / boost / align / detail / assume_aligned_gcc.hpp
CommitLineData
7c673cae
FG
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.com>
7
8Distributed under the Boost Software
9License, Version 1.0.
10http://boost.org/LICENSE_1_0.txt
11*/
12#ifndef BOOST_ALIGN_DETAIL_ASSUME_ALIGNED_GCC_HPP
13#define BOOST_ALIGN_DETAIL_ASSUME_ALIGNED_GCC_HPP
14
15#define BOOST_ALIGN_ASSUME_ALIGNED(p, n) \
16(p) = (__typeof__(p))(__builtin_assume_aligned((p), (n)))
17
18#endif