If you want to explicitly instantiate and call your function with T set to int, you have to pass that int as a template argument: foo<int>.
This does not excuse you from supplying the "ordinary" argument, since you declared your function with one "ordinary" parameter of type T.
So, valid calls to foo with explicitly specified template argument might look as follows
foo<int>(0);
foo<int>(true);
foo<int>('a');
(the purpose of explicit specification of template argument is to override the template argument deduction mechanism).
If your intent was to keep that "ordinary" parameter as a fictive one (since you didn't even bother to give it a name), you can supply it with a default argument
template<typename T> void func(T = T())
{
std::cout << typeid(T).name() << std::endl;
}
in which case your function will become callable as
foo<int>();
Or you can get rid of the ordinary parameter entirely (since you are not using it inside the function anyway)
template<typename T> void func()
{
std::cout << typeid(T).name() << std::endl;
}
albeit this will force you to always specify the template argument explicitly.
If you had something else in mind, you have to explain what it is.
intis not anint.intis a type (not a value).0is anint. – melpomene Dec 14 '12 at 18:49std::endl. If you really mean to flush the output, usestd::flush. – Dietmar Kühl Dec 14 '12 at 18:58std::endlcauses performance problems. People using it as a default will introduce problems which may involve a lot if changes to solve them. – Dietmar Kühl Dec 14 '12 at 19:06