align_down.hpp 679 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. (c) 2015 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_ALIGN_DOWN_HPP
  9. #define BOOST_ALIGN_DETAIL_ALIGN_DOWN_HPP
  10. #include <boost/align/detail/is_alignment.hpp>
  11. #include <boost/align/align_down_forward.hpp>
  12. #include <boost/assert.hpp>
  13. namespace boost {
  14. namespace alignment {
  15. inline void* align_down(void* ptr, std::size_t alignment) BOOST_NOEXCEPT
  16. {
  17. BOOST_ASSERT(detail::is_alignment(alignment));
  18. return reinterpret_cast<void*>(align_down(reinterpret_cast<std::
  19. size_t>(ptr), alignment));
  20. }
  21. } /* .alignment */
  22. } /* .boost */
  23. #endif