Skip to content
  • Douglas Gregor's avatar
    Implement basic parsing and semantic analysis for explicit · 67a65640
    Douglas Gregor authored
    specialization of class templates, e.g.,
    
      template<typename T> class X;
    
      template<> class X<int> { /* blah */ };
    
    Each specialization is a different *Decl node (naturally), and can
    have different members. We keep track of forward declarations and
    definitions as for other class/struct/union types.
    
    This is only the basic framework: we still have to deal with checking
    the template headers properly, improving recovery when there are
    failures, handling nested name specifiers, etc.
    
    llvm-svn: 64848
    67a65640
Loading