| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Correctly handle elaborated template ids. Still not handled properly for fri... | John McCall | 2009-09-04 | 1 | -1/+24 |
| * | Rewrite of our handling of name lookup in C++ member access expressions, e.g., | Douglas Gregor | 2009-09-02 | 1 | -114/+212 |
| * | Document how we intepret C++ DR 382 | Douglas Gregor | 2009-09-02 | 1 | -0/+6 |
| * | When parsing typename specifiers (with either the identifier or | Douglas Gregor | 2009-09-02 | 1 | -7/+11 |
| * | Preliminary AST representation and semantic analysis for | Douglas Gregor | 2009-09-01 | 1 | -0/+35 |
| * | Test instantiation of static data members that live within nested | Douglas Gregor | 2009-08-28 | 1 | -3/+0 |
| * | Tighten up the conversion from a single-level template argument list | Douglas Gregor | 2009-08-28 | 1 | -1/+2 |
| * | Implement template instantiation for member class templates. | Douglas Gregor | 2009-08-28 | 1 | -3/+5 |
| * | Improve support for out-of-line definitions of nested templates and | Douglas Gregor | 2009-08-25 | 1 | -5/+14 |
| * | Clarify the difference between substitution and instantiation by renaming | John McCall | 2009-08-25 | 1 | -13/+13 |
| * | Implement out-of-line definitions of nested class templates. Most of | Douglas Gregor | 2009-08-25 | 1 | -79/+66 |
| * | Use Sema's LocInfoType to pass and preserve type source info through the Parser. | Argyrios Kyrtzidis | 2009-08-19 | 1 | -3/+6 |
| * | Introduce DeclaratorDecl and pass DeclaratorInfo through the Decl/Sema interf... | Argyrios Kyrtzidis | 2009-08-19 | 1 | -2/+3 |
| * | Add newline at end of file. | Benjamin Kramer | 2009-08-11 | 1 | -1/+1 |
| * | When we encounter a dependent type that was parsed before we know that | Douglas Gregor | 2009-08-06 | 1 | -0/+119 |
| * | Canonicalize else. | Mike Stump | 2009-08-04 | 1 | -7/+4 |
| * | Refactor template instantiation for types into a generic tree | Douglas Gregor | 2009-08-04 | 1 | -2/+0 |
| * | Rename Action::TagKind to Action::TagUseKind, which removes both a misnomer | John McCall | 2009-07-31 | 1 | -10/+11 |
| * | Make the check for the linkage of a template handle the case of nested | Eli Friedman | 2009-07-31 | 1 | -6/+5 |
| * | Support out-of-line definitions of the members of class template | Douglas Gregor | 2009-07-30 | 1 | -9/+44 |
| * | Change uses of: | Ted Kremenek | 2009-07-29 | 1 | -9/+9 |
| * | [llvm up] | Douglas Gregor | 2009-07-29 | 1 | -4/+12 |
| * | When lookup of an identifier preceding a '<' finds a set of overloaded | Douglas Gregor | 2009-07-29 | 1 | -9/+35 |
| * | Remove an obsolete kludge based on the previous, completely broken handling o... | Douglas Gregor | 2009-07-29 | 1 | -7/+2 |
| * | Use the new statement/expression profiling code to unique dependent | Douglas Gregor | 2009-07-29 | 1 | -4/+8 |
| * | Refactor the code that produces a TemplateSpecializationType, so that | Douglas Gregor | 2009-07-28 | 1 | -76/+7 |
| * | Clean up the ActOnTag action, so that there is only a single entry | Douglas Gregor | 2009-07-23 | 1 | -2/+2 |
| * | Implement support for out-of-line definitions of the class members of class | Douglas Gregor | 2009-07-22 | 1 | -1/+2 |
| * | Fix some memory allocation/deallocation issues | Douglas Gregor | 2009-07-22 | 1 | -0/+1 |
| * | Basic parsing and semantic analysis for out-of-line definitions of the | Douglas Gregor | 2009-07-21 | 1 | -4/+121 |
| * | Add the location of the tag keyword into TagDecl. From Enea | Douglas Gregor | 2009-07-21 | 1 | -1/+1 |
| * | Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its p... | Argyrios Kyrtzidis | 2009-07-18 | 1 | -8/+12 |
| * | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek | 2009-07-17 | 1 | -8/+8 |
| * | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek | 2009-07-17 | 1 | -2/+2 |
| * | Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). | Ted Kremenek | 2009-07-17 | 1 | -2/+2 |
| * | Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. | Ted Kremenek | 2009-07-16 | 1 | -4/+4 |
| * | Cope with explicitly-specified function template arguments when there | Douglas Gregor | 2009-07-01 | 1 | -4/+9 |
| * | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor | 2009-06-30 | 1 | -0/+36 |
| * | De-ASTContext-ify DeclContext. | Argyrios Kyrtzidis | 2009-06-30 | 1 | -3/+3 |
| * | Improved semantic analysis and AST respresentation for function | Douglas Gregor | 2009-06-25 | 1 | -4/+10 |
| * | Implement matching of function templates, so that one can declare overloaded ... | Douglas Gregor | 2009-06-24 | 1 | -7/+9 |
| * | Make sure that the template parameter lists get from the parser down to ActOn... | Douglas Gregor | 2009-06-24 | 1 | -0/+21 |
| * | When declaring a function template, create a FunctionTemplateDecl node | Douglas Gregor | 2009-06-24 | 1 | -3/+4 |
| * | Start propagating template parameter lists to the right places to | Douglas Gregor | 2009-06-23 | 1 | -0/+7 |
| * | Check in a new template argument list builder that should work better for var... | Anders Carlsson | 2009-06-23 | 1 | -47/+45 |
| * | Diagnose class members that shadow a template parameter. Fixes | Douglas Gregor | 2009-06-17 | 1 | -0/+3 |
| * | Support dependent extended vector types and template instantiation | Douglas Gregor | 2009-06-17 | 1 | -1/+1 |
| * | More parameter pack work. | Anders Carlsson | 2009-06-15 | 1 | -3/+3 |
| * | Add a new 'Pack' argument kind to TemplateArgument. This is not yet used. | Anders Carlsson | 2009-06-15 | 1 | -0/+13 |
| * | Have CheckClassTemplatePartialSpecializationArgs take a TemplateArgumentListB... | Anders Carlsson | 2009-06-13 | 1 | -8/+11 |