addressof.hpp 592 B

12345678910111213141516171819202122232425262728293031323334
  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_ADDRESSOF_HPP
  9. #define BOOST_ALIGN_DETAIL_ADDRESSOF_HPP
  10. #include <boost/config.hpp>
  11. #if !defined(BOOST_NO_CXX11_ADDRESSOF)
  12. #include <memory>
  13. #else
  14. #include <boost/core/addressof.hpp>
  15. #endif
  16. namespace boost {
  17. namespace alignment {
  18. namespace detail {
  19. #if !defined(BOOST_NO_CXX11_ADDRESSOF)
  20. using std::addressof;
  21. #else
  22. using boost::addressof;
  23. #endif
  24. } /* .detail */
  25. } /* .alignment */
  26. } /* .boost */
  27. #endif