Age | Commit message (Expand) | Author |
2013-02-22 | Streamify getNameForDiagnostic and remove the string versions of PrintTemplat... | Benjamin Kramer |
2013-02-21 | Ignore visibility from enclosing template arguments | John McCall |
2013-02-16 | Rework the visibility computation algorithm in preparation | John McCall |
2013-02-14 | Remove const_casts by making spec_begin()/spec_end() const | Dmitri Gribenko |
2013-02-03 | Remove unneeded const_casts | Dmitri Gribenko |
2013-01-23 | Constify some getters in RedeclarableTemplateDecl | Dmitri Gribenko |
2013-01-12 | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko |
2012-10-11 | Remove pointless classof()'s. | Sean Silva |
2012-09-18 | Mark unimplemented copy constructors and copy assignment operators with LLVM_... | Craig Topper |
2012-09-07 | PR9023: A template template parameter whose template parameter list contains an | Richard Smith |
2012-07-04 | Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. | Benjamin Kramer |
2012-07-04 | Drop the ASTContext.h include from Stmt.h and fix up transitive users. | Benjamin Kramer |
2012-06-25 | Make explicit specializations at class scope work | Nico Weber |
2012-06-20 | Documentation cleanup: adding/fixing Doxygen markup, particularly \brief, | James Dennett |
2012-05-03 | Fix non-deterministic iteration order when walking the specializations | Chandler Carruth |
2012-03-15 | Document RedeclarableTemplateDecl::getInstantiatedFromMemberTemplate(). | Douglas Gregor |
2012-03-14 | Instantiating a class template should not instantiate the definition of any | Richard Smith |
2012-03-09 | [AST/etc] Mark {getSourceRange(),getStartLoc(),getEndLoc()} as LLVM_READONLY. | Daniel Dunbar |
2012-01-14 | Replace a using declararion with a typedef in the hope of satisfying GCC | Douglas Gregor |
2012-01-14 | De-virtualize getPreviousDecl() and getMostRecentDecl() when we know | Douglas Gregor |
2012-01-14 | Introduce Decl::getPreviousDecl() and Decl::getMostRecentDecl(), | Douglas Gregor |
2012-01-14 | Reimplement RedeclarableTemplateDecl in terms of | Douglas Gregor |
2012-01-05 | When creating declarations that are deserialized from an module file, | Douglas Gregor |
2011-12-23 | Fix several issues related to specializations and explicit instantiations. | Nico Weber |
2011-12-20 | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie |
2011-11-09 | Fixing 80 col violations (& removing any trailing whitespace on files I was t... | David Blaikie |
2011-09-23 | Switch assert(0/false) llvm_unreachable. | David Blaikie |
2011-09-22 | Don't use TemplateArgumentListInfo inside AST nodes because it may leak. | Argyrios Kyrtzidis |
2011-08-14 | Implement function template specialization at class scope extension in Micros... | Francois Pichet |
2011-07-20 | now that we have a centralized place to do so, add some using declarations for | Chris Lattner |
2011-06-27 | Don't factor in visibility for templates and template arguments | John McCall |
2011-05-05 | Implement support for C++0x alias templates. | Richard Smith |
2011-05-01 | Re-applies the patch first applied way back in r106099, with | Chandler Carruth |
2011-04-14 | Chained PCH: Remember when additional specializations are added to a function... | Sebastian Redl |
2011-03-09 | Fixed InnerLocStart. | Abramo Bagnara |
2011-03-08 | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara |
2011-03-06 | Fixed TypedefDecl and TemplateTypeParameter source range. | Abramo Bagnara |
2011-03-05 | When determining template instantiation arguments within a function | Douglas Gregor |
2011-03-04 | Make sure to put template parameters into their owning template's | Douglas Gregor |
2011-03-04 | Fixed source range for ClassTemplateSpecializationDecl. | Abramo Bagnara |
2011-03-04 | Improved TemplateTypeParmDecl end location. | Abramo Bagnara |
2011-02-21 | Tweaks to C++0x deduced auto type support: | Richard Smith |
2011-02-19 | Revert all of my commits that devirtualized the Decl hierarchy, which | Douglas Gregor |
2011-02-17 | Devirtualize DeclaratorDecl::getInnerLocStart() and TagDecl::getInnerLocStart(). | Douglas Gregor |
2011-02-17 | Devirtualize NamedDecl::getNameForDiagnostic(). | Douglas Gregor |
2011-02-17 | Devirtualize RedeclarableTemplateDecl::newCommon(). | Douglas Gregor |
2011-02-17 | Devirtualize Decl::getNextRedeclaration(). | Douglas Gregor |
2011-02-09 | NonTypeTemplateParmDecl is just a DeclaratorDecl, not a VarDecl. | John McCall |
2011-01-19 | Implement support for non-type template parameter packs whose type is | Douglas Gregor |
2011-01-12 | PR3558: mark "logically const" accessor methods in ASTContext as const, | Jay Foad |