Skip to content
  1. May 20, 2010
  2. May 08, 2010
    • Douglas Gregor's avatar
      When printing a non-viable overload candidate that failed due to · 3626a5ca
      Douglas Gregor authored
      conflicting deduced template argument values, give a more specific
      reason along with those values, e.g.,
      
      test/SemaTemplate/overload-candidates.cpp:4:10: note: candidate template
            ignored: deduced conflicting types for parameter 'T' ('int' vs. 'long')
      const T& min(const T&, const T&); 
               ^
      
      llvm-svn: 103339
      3626a5ca
  3. Dec 07, 2009
    • John McCall's avatar
      DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, · bcd03506
      John McCall authored
      but the results are imperfect.
      
      For posterity, I did:
      
      cat <<EOF > $cmdfile
      s/DeclaratorInfo/TypeSourceInfo/g
      s/DInfo/TInfo/g
      s/TypeTypeSourceInfo/TypeSourceInfo/g
      s/SourceTypeSourceInfo/TypeSourceInfo/g
      EOF
      
      find lib -name '*.cpp' -not -path 'lib/Parse/*' -exec sed -i '' -f $cmdfile '{}' \;
      find lib -name '*.h' -exec sed -i '' -f $cmdfile '{}' \;
      find include -name '*.h' -not -path 'include/clang/Parse/*' -not -path 'include/clang/Basic/*' -exec sed -i '' -f $cmdfile '{}' \;
      
      llvm-svn: 90743
      bcd03506
  4. Nov 23, 2009
  5. Nov 11, 2009
    • Douglas Gregor's avatar
      Fix speculative parsing of dependent template names in · 120635bc
      Douglas Gregor authored
      nested-name-specifiers so that they don't gobble the template name (or
      operator-function-id) unless there is also a
      template-argument-list. For example, given
      
        T::template apply
      
      we would previously consume both "template" and "apply" as part of
      parsing the nested-name-specifier, then error when we see that there
      is no "<" starting a template argument list. Now, we parse such
      constructs tentatively, and back off if the "<" is not present. This
      allows us to parse dependent template names as one would use them for,
      e.g., template template parameters:
      
        template<typename T, template<class> class X = T::template apply>
          struct MetaSomething;
      
      Also, test default arguments for template template parameters.
      
      llvm-svn: 86841
      120635bc
    • Douglas Gregor's avatar
      Introduce a new representation for template template · 9167f8bb
      Douglas Gregor authored
      parameters. Rather than storing them as either declarations (for the
      non-dependent case) or expressions (for the dependent case), we now
      (always) store them as TemplateNames. 
      
      The primary change here is to add a new kind of TemplateArgument,
      which stores a TemplateName. However, making that change ripples to
      every switch on a TemplateArgument's kind, also affecting
      TemplateArgumentLocInfo/TemplateArgumentLoc, default template
      arguments for template template parameters, type-checking of template
      template arguments, etc.
      
      This change is light on testing. It should fix several pre-existing
      problems with template template parameters, such as:
        - the inability to use dependent template names as template template
        arguments
        - template template parameter default arguments cannot be
        instantiation
      
      However, there are enough pieces missing that more implementation is
      required before we can adequately test template template parameters. 
      
      llvm-svn: 86777
      9167f8bb
  6. Oct 29, 2009
Loading