123456789101112131415161718192021222324252627 |
- #ifndef BOOST_ALIGN_DETAIL_NOT_POINTER_HPP
- #define BOOST_ALIGN_DETAIL_NOT_POINTER_HPP
- namespace boost {
- namespace alignment {
- namespace detail {
- template<class T, class U>
- struct not_pointer {
- typedef U type;
- };
- template<class T, class U>
- struct not_pointer<T*, U> { };
- }
- }
- }
- #endif
|