is_aligned.hpp 862 B

123456789101112131415161718192021222324252627282930313233343536
  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_DETAIL_IS_ALIGNED_HPP
  9. #define BOOST_ALIGN_DETAIL_IS_ALIGNED_HPP
  10. #include <boost/align/detail/is_alignment.hpp>
  11. #include <boost/align/is_aligned_forward.hpp>
  12. #include <boost/assert.hpp>
  13. namespace boost {
  14. namespace alignment {
  15. inline bool is_aligned(const void* ptr, std::size_t alignment)
  16. BOOST_NOEXCEPT
  17. {
  18. BOOST_ASSERT(detail::is_alignment(alignment));
  19. return is_aligned(reinterpret_cast<std::size_t>(ptr), alignment);
  20. }
  21. inline bool is_aligned(std::size_t alignment, const void* ptr)
  22. BOOST_NOEXCEPT
  23. {
  24. BOOST_ASSERT(detail::is_alignment(alignment));
  25. return is_aligned(reinterpret_cast<std::size_t>(ptr), alignment);
  26. }
  27. } /* .alignment */
  28. } /* .boost */
  29. #endif