what does template<> (without any class T in the <>) mean?

c++, templates

Solution

This would mean that what follows is a template specialization.

Problem

I'm reading some source code in stl_construct.h, In most cases it has sth in the <> and i see some lines with only "`template<> ...`". what's this?

Original source