Why does compiler generate error?
template<class T>
void ignore (const T &) {}
void f() {
ignore(std::endl);
}
Compiler VS2008 gives the following error: cannot deduce template argument as function argument is ambiguous.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think that problem is that
std::endlis a template function and compiler cannot deduce template argument forignorefunction.To fix a problem you could write something like as follows:
But you should know that you will pass pointer to function as argument, not result of function execution.