I'm new to the Boost.MPL library, and have some "beginners-problems"
Look at this sample:
template < typename F >
struct A {
typedef boost::function_types::parameter_types<F> P;
typedef typename boost::function_types::result_type<F>::type R;
typedef typename boost::mpl::if_< boost::is_same< R, void >,
boost::function< void ( void ) > ,
boost::function< void ( R ) > >::type TTT;
A() { }
};
int main(int argc, const char *argv[]) {
A<int(int, float)> ok; // working
A<void(int, float)> compile_error; // non-working
return 0;
}
When compiling I get:
xxx.cxx: In instantiation of ‘A<void(int, float)>’:
xxx.cxx:108:25: instantiated from here
xxx.cxx:100:77: error: invalid parameter type
‘boost::mpl::aux::wrapped_type<boost::mpl::aux::type_wrapper<void>
>::type’
xxx.cxx:100:77: error: in declaration ‘A<F>::TTT’
What is the problem here, and how can I solve it?
To my understanding, only the selected part of mpl::if_ should be evaluated by the compiler....
'result_type' in namespace 'boost::function_types' does not name a type– BЈовић Nov 24 '11 at 14:22Pis not used inTTTdeclaration, is it normal or is it a typo (we don't know what you are trying to achieve, so it is hard to tell)? – Luc Touraille Nov 24 '11 at 14:51boost/std::function. Perhaps the title could be rephrased since the issue is not so much aboutfunction_typesbut more aboutfunctionand function signatures in general. – Luc Touraille Nov 24 '11 at 14:58