fix doc example typo
[boost.git] / boost / type_traits / is_function.hpp
blob1fba1bdff30480362c9a43deede6bf0edc1f50ef
2 // Copyright 2000 John Maddock (john@johnmaddock.co.uk)
3 // Copyright 2002 Aleksey Gurtovoy (agurtovoy@meta-comm.com)
4 //
5 // Use, modification and distribution are subject to the Boost Software License,
6 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt).
8 //
9 // See http://www.boost.org/libs/type_traits for most recent version including documentation.
11 #ifndef BOOST_TT_IS_FUNCTION_HPP_INCLUDED
12 #define BOOST_TT_IS_FUNCTION_HPP_INCLUDED
14 #include <boost/type_traits/is_reference.hpp>
15 #include <boost/type_traits/detail/false_result.hpp>
16 #include <boost/config.hpp>
18 #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_TT_TEST_MS_FUNC_SIGS)
19 # include <boost/type_traits/detail/is_function_ptr_helper.hpp>
20 #else
21 # include <boost/type_traits/detail/is_function_ptr_tester.hpp>
22 # include <boost/type_traits/detail/yes_no_type.hpp>
23 #endif
25 // should be the last #include
26 #include <boost/type_traits/detail/bool_trait_def.hpp>
28 // is a type a function?
29 // Please note that this implementation is unnecessarily complex:
30 // we could just use !is_convertible<T*, const volatile void*>::value,
31 // except that some compilers erroneously allow conversions from
32 // function pointers to void*.
34 namespace boost {
36 #if !defined( __CODEGEARC__ )
38 namespace detail {
40 #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_TT_TEST_MS_FUNC_SIGS)
41 template<bool is_ref = true>
42 struct is_function_chooser
43 : ::boost::type_traits::false_result
47 template <>
48 struct is_function_chooser<false>
50 template< typename T > struct result_
51 : ::boost::type_traits::is_function_ptr_helper<T*>
56 template <typename T>
57 struct is_function_impl
58 : is_function_chooser< ::boost::is_reference<T>::value >
59 ::BOOST_NESTED_TEMPLATE result_<T>
63 #else
65 template <typename T>
66 struct is_function_impl
68 #if BOOST_WORKAROUND(_MSC_FULL_VER, >= 140050000)
69 #pragma warning(push)
70 #pragma warning(disable:6334)
71 #endif
72 static T* t;
73 BOOST_STATIC_CONSTANT(
74 bool, value = sizeof(::boost::type_traits::is_function_ptr_tester(t))
75 == sizeof(::boost::type_traits::yes_type)
77 #if BOOST_WORKAROUND(_MSC_FULL_VER, >= 140050000)
78 #pragma warning(pop)
79 #endif
82 #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
83 template <typename T>
84 struct is_function_impl<T&> : public false_type
85 {};
86 #endif
88 #endif
90 } // namespace detail
92 #endif // !defined( __CODEGEARC__ )
94 #if defined( __CODEGEARC__ )
95 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_function,T,__is_function(T))
96 #else
97 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_function,T,::boost::detail::is_function_impl<T>::value)
98 #endif
99 } // namespace boost
101 #include <boost/type_traits/detail/bool_trait_undef.hpp>
103 #endif // BOOST_TT_IS_FUNCTION_HPP_INCLUDED