function_traits.hpp:

- Added function_traits template that returns arity, result type, and
    argument types for a function type.


[SVN r14671]
This commit is contained in:
Douglas Gregor
2002-08-05 01:59:53 +00:00
parent b8b462622b
commit 9788a1455d

View File

@ -291,6 +291,7 @@ struct function_traits_helper<R (*)(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)>
typedef T9 arg9_type;
typedef T10 arg10_type;
};
} // end namespace detail
template<typename Function>