12345678910111213141516171819 |
- #ifndef BOOST_ALIGN_DETAIL_ASSUME_ALIGNED_MSVC_HPP
- #define BOOST_ALIGN_DETAIL_ASSUME_ALIGNED_MSVC_HPP
- #include <cstddef>
- #define BOOST_ALIGN_ASSUME_ALIGNED(ptr, alignment) \
- __assume((reinterpret_cast<std::size_t>(ptr) & ((alignment) - 1)) == 0)
- #endif
|