Skip to content
  1. Oct 13, 2009
    • Douglas Gregor's avatar
      Unify our diagnostic printing for errors of the form, "we didn't like · e40876a5
      Douglas Gregor authored
      what we found when we looked into <blah>", where <blah> is a
      DeclContext*. We can now format DeclContext*'s in nice ways, e.g.,
      "namespace N", "the global namespace", "'class Foo'".
      
      This is part of PR3990, but we're not quite there yet.
      
      llvm-svn: 84028
      e40876a5
    • Douglas Gregor's avatar
      Diagnose attempts to add default function arguments to a · 62e10f0b
      Douglas Gregor authored
      specialization. This completes C++ [temp.expl.spec]!
      
      llvm-svn: 83980
      62e10f0b
    • Douglas Gregor's avatar
      When explicitly specializing a member that is a template, mark the · cf91555c
      Douglas Gregor authored
      template as a specialization. For example, this occurs with:
      
        template<typename T>
        struct X {
          template<typename U> struct Inner { /* ... */ };
        };
      
        template<> template<typename T>
        struct X<int>::Inner {
          T member;
        };
      
      We need to treat templates that are member specializations as special
      in two contexts:
      
        - When looking for a definition of a member template, we look
          through the instantiation chain until we hit the primary template
          *or a member specialization*. This allows us to distinguish
          between the primary "Inner" definition and the X<int>::Inner
          definition, above.
        - When computing all of the levels of template arguments needed to
          instantiate a member template, don't add template arguments
          from contexts outside of the instantiation of a member
          specialization, since the user has already manually substituted
          those arguments.
      
      Fix up the existing test for p18, which was actually wrong (but we
      didn't diagnose it because of our poor handling of member
      specializations of templates), and add a new test for member
      specializations of templates.
      
      llvm-svn: 83974
      cf91555c
    • Douglas Gregor's avatar
      Improve the internal representation and semantic analysis of friend · 3a88c1d7
      Douglas Gregor authored
      function templates.
      
      This commit ensures that friend function templates are constructed as
      FunctionTemplateDecls rather than partial FunctionDecls (as they
      previously were). It then implements template instantiation for friend
      function templates, injecting the friend function template only when
      no previous declaration exists at the time of instantiation. 
      
      Oh, and make sure that explicit specialization declarations are not
      friends.
      
      llvm-svn: 83970
      3a88c1d7
    • Chris Lattner's avatar
      make the diagnostic in the 'unused result' warning more precise · 1a6babf1
      Chris Lattner authored
      about the reason, rdar://7186119.
      
      llvm-svn: 83940
      1a6babf1
    • Douglas Gregor's avatar
      When declaring a class template whose name is qualified, make sure · ef06ccf8
      Douglas Gregor authored
      that the scope in which it is being declared is complete. Also, when
      instantiating a member class template's ClassTemplateDecl, be sure to
      delay type creation so that the resulting type is dependent. Ick.
      
      llvm-svn: 83923
      ef06ccf8
    • Douglas Gregor's avatar
      Permit explicit specialization of member functions of class templates · ca027af6
      Douglas Gregor authored
      that are declarations (rather than definitions). Also, be sure to set
      the access specifiers properly when instantiating the declarations of
      member function templates.
      
      llvm-svn: 83911
      ca027af6
    • John McCall's avatar
      More appropriate API usage. · e724ae92
      John McCall authored
      llvm-svn: 83910
      e724ae92
  2. Oct 12, 2009
  3. Oct 11, 2009
  4. Oct 10, 2009
  5. Oct 09, 2009
  6. Oct 08, 2009
Loading