aligned_delete.hpp 668 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. (c) 2014-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_ALIGNED_DELETE_HPP
  9. #define BOOST_ALIGN_ALIGNED_DELETE_HPP
  10. #include <boost/align/aligned_alloc.hpp>
  11. #include <boost/align/aligned_delete_forward.hpp>
  12. namespace boost {
  13. namespace alignment {
  14. struct aligned_delete {
  15. template<class T>
  16. void operator()(T* ptr) const
  17. BOOST_NOEXCEPT_IF(BOOST_NOEXCEPT_EXPR(ptr->~T())) {
  18. if (ptr) {
  19. ptr->~T();
  20. ::boost::alignment::aligned_free(ptr);
  21. }
  22. }
  23. };
  24. } /* .alignment */
  25. } /* .boost */
  26. #endif