is_aligned.hpp 550 B

123456789101112131415161718192021222324252627
  1. /*
  2. (c) 2014 Glen Joseph Fernandes
  3. <glenjofe -at- gmail.com>
  4. Distributed under the Boost Software
  5. License, Version 1.0.
  6. http://boost.org/LICENSE_1_0.txt
  7. */
  8. #ifndef BOOST_ALIGN_IS_ALIGNED_HPP
  9. #define BOOST_ALIGN_IS_ALIGNED_HPP
  10. #include <boost/align/detail/is_aligned.hpp>
  11. #include <boost/align/is_aligned_forward.hpp>
  12. namespace boost {
  13. namespace alignment {
  14. BOOST_CONSTEXPR inline bool is_aligned(std::size_t value,
  15. std::size_t alignment) BOOST_NOEXCEPT
  16. {
  17. return (value & (alignment - 1)) == 0;
  18. }
  19. } /* .alignment */
  20. } /* .boost */
  21. #endif