source: NonGTP/Boost/boost/type_traits/remove_pointer.hpp @ 857

Revision 857, 1.3 KB checked in by igarcia, 18 years ago (diff)
Line 
1
2//  (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
3//  Use, modification and distribution are subject to the Boost Software License,
4//  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5//  http://www.boost.org/LICENSE_1_0.txt).
6//
7//  See http://www.boost.org/libs/type_traits for most recent version including documentation.
8
9#ifndef BOOST_TT_REMOVE_POINTER_HPP_INCLUDED
10#define BOOST_TT_REMOVE_POINTER_HPP_INCLUDED
11
12#include "boost/type_traits/broken_compiler_spec.hpp"
13#include "boost/config.hpp"
14
15// should be the last #include
16#include "boost/type_traits/detail/type_trait_def.hpp"
17
18namespace boost {
19
20#ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
21
22BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_pointer,T,T)
23BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_pointer,T*,T)
24BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_pointer,T* const,T)
25BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_pointer,T* volatile,T)
26BOOST_TT_AUX_TYPE_TRAIT_PARTIAL_SPEC1_1(typename T,remove_pointer,T* const volatile,T)
27
28#else
29
30BOOST_TT_AUX_TYPE_TRAIT_DEF1(remove_pointer,T,typename detail::remove_pointer_impl<T>::type)
31
32#endif
33
34} // namespace boost
35
36#include "boost/type_traits/detail/type_trait_undef.hpp"
37
38#endif // BOOST_TT_REMOVE_POINTER_HPP_INCLUDED
Note: See TracBrowser for help on using the repository browser.