Tagged Questions
5
votes
5answers
2k views
Do template specializations require template<> syntax?
I have a visitor class resembling this:
struct Visitor
{
template <typename T>
void operator()(T t)
{
...
}
void operator()(bool b)
{
...
}
};
...
4
votes
1answer
7k views
Function template specialization format
What is the reason for the second brackets <> in the following function template:
template<> void doh::operator()<>(int i)
This came up in SO question where it was suggested that ...
2
votes
5answers
486 views
C++ specialization of template function inside template class
What is the C++ syntax for specializing a template function that's inside a template class? For example, consider that I have the following two classes and their usage. I would like to be able to ...