]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/align/align.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / align / align.hpp
1 /*
2 Copyright 2014-2015 Glen Joseph Fernandes
3 (glenjofe@gmail.com)
4
5 Distributed under the Boost Software License, Version 1.0.
6 (http://www.boost.org/LICENSE_1_0.txt)
7 */
8 #ifndef BOOST_ALIGN_ALIGN_HPP
9 #define BOOST_ALIGN_ALIGN_HPP
10
11 #include <boost/config.hpp>
12
13 #if !defined(BOOST_NO_CXX11_STD_ALIGN) && !defined(BOOST_LIBSTDCXX_VERSION)
14 #include <boost/align/detail/align_cxx11.hpp>
15 #else
16 #include <boost/align/detail/align.hpp>
17 #endif
18
19 #endif