|
||||
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_GCC_HPP 0012 #define BOOST_ALIGN_DETAIL_ASSUME_ALIGNED_GCC_HPP 0013 0014 #define BOOST_ALIGN_ASSUME_ALIGNED(p, n) \ 0015 (p) = static_cast<__typeof__(p)>(__builtin_assume_aligned((p), (n))) 0016 0017 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |