Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:26

0001 /*
0002 Copyright 2015 NumScale SAS
0003 Copyright 2015 LRI UMR 8623 CNRS/University Paris Sud XI
0004 
0005 Copyright 2015 Glen Joseph Fernandes
0006 (glenjofe@gmail.com)
0007 
0008 Distributed under the Boost Software License, Version 1.0.
0009 (http://www.boost.org/LICENSE_1_0.txt)
0010 */
0011 #ifndef BOOST_ALIGN_DETAIL_ASSUME_ALIGNED_INTEL_HPP
0012 #define BOOST_ALIGN_DETAIL_ASSUME_ALIGNED_INTEL_HPP
0013 
0014 #define BOOST_ALIGN_ASSUME_ALIGNED(ptr, alignment) \
0015 __assume_aligned((ptr), (alignment))
0016 
0017 #endif