Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 336 Bytes

template.md

File metadata and controls

11 lines (10 loc) · 336 Bytes

explicit (full) template specialization:

template<>
class N::Y<double> { /*...*/ }; // OK: specialization in same namespace

explicit instantiation:

template class N::Y<char*>;      // OK:

Explicit instantiation has no effect if an explicit specialization appeared before for the same set of template arguments.