It\'s not a syntax I\'m familiar with, but I saw it in another question, an example being:
template<> struct Allowed { };
It's a specialization. template<> means that the specialization itself is not templated- i.e., it is an explicit specialization, not a partial specialization.
template<>