is_alignment.hpp 551 B

1234567891011121314151617181920212223242526272829
  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_ALIGNMENT_HPP
  9. #define BOOST_ALIGN_DETAIL_IS_ALIGNMENT_HPP
  10. #include <boost/config.hpp>
  11. #include <cstddef>
  12. namespace boost {
  13. namespace alignment {
  14. namespace detail {
  15. BOOST_CONSTEXPR inline bool is_alignment(std::size_t value)
  16. BOOST_NOEXCEPT
  17. {
  18. return (value > 0) && ((value & (value - 1)) == 0);
  19. }
  20. } /* .detail */
  21. } /* .alignment */
  22. } /* .boost */
  23. #endif