Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:42:51

0001 /*
0002 Copyright 2014-2015 Glen Joseph Fernandes
0003 (glenjofe@gmail.com)
0004 
0005 Distributed under the Boost Software License, Version 1.0.
0006 (http://www.boost.org/LICENSE_1_0.txt)
0007 */
0008 #ifndef BOOST_ALIGN_ALIGN_HPP
0009 #define BOOST_ALIGN_ALIGN_HPP
0010 
0011 #include <boost/config.hpp>
0012 
0013 #if !defined(BOOST_NO_CXX11_STD_ALIGN) && !defined(BOOST_LIBSTDCXX_VERSION)
0014 #include <boost/align/detail/align_cxx11.hpp>
0015 #else
0016 #include <boost/align/detail/align.hpp>
0017 #endif
0018 
0019 #endif