Age | Commit message (Expand) | Author |
2011-02-27 | Eliminate a silly little Parse/Sema dance when parsing typename | Douglas Gregor |
2011-02-25 | Push nested-name-specifier source location information into | Douglas Gregor |
2011-02-25 | Switch a few CXXScopeSpec::MakeTrivial() calls over to appropriate | Douglas Gregor |
2011-02-25 | Use NestedNameSpecifierLoc within out-of-line variables, function, and | Douglas Gregor |
2011-02-25 | Update UsingDecl, UnresolvedUsingTypenameDecl, and | Douglas Gregor |
2011-02-24 | Retain complete source-location information for C++ | Douglas Gregor |
2011-02-24 | Teach NestedNameSpecifier to keep track of namespace aliases the same | Douglas Gregor |
2011-02-24 | Tweak the CXXScopeSpec API a bit, so that we require the | Douglas Gregor |
2011-02-20 | Implement the C++0x deduced 'auto' feature. | Richard Smith |
2011-02-19 | Handle the resolution of a reference to a function template (which | Douglas Gregor |
2011-02-18 | When we're creating an expression for an integral template argument of | Douglas Gregor |
2011-02-04 | Tweak my fix for PR8748, and update the incorrect PR number in the test case. | Douglas Gregor |
2011-02-04 | Tighten up the semantics of default template arguments, per C++0x | Douglas Gregor |
2011-02-04 | When a function template's template parameter has a default argument, | Douglas Gregor |
2011-01-27 | Fix whitespace. | NAKAMURA Takumi |
2011-01-27 | 7bit-ize. | NAKAMURA Takumi |
2011-01-27 | When we run into a template parameter that should have a default | Douglas Gregor |
2011-01-27 | Fix a horrible bug in our handling of C-style casting, where a C-style | Douglas Gregor |
2011-01-25 | Teach TemplateSpecializationTypeLoc::initializeArgLocs() to actually | Douglas Gregor |
2011-01-24 | Re-instate r123977/r123978, my updates of the reference-binding | Douglas Gregor |
2011-01-22 | revert r123977 and r123978 to fix PR9026. | Rafael Espindola |
2011-01-21 | Update the reference-binding implementation used for overload | Douglas Gregor |
2011-01-19 | Implement support for non-type template parameter packs whose type is | Douglas Gregor |
2011-01-19 | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall |
2011-01-18 | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin |
2011-01-14 | Teach template template argument pack expansions to keep track of the | Douglas Gregor |
2011-01-14 | The variable 'ReusedDecl' is written but never read. | Ted Kremenek |
2011-01-14 | The variable 'isTemplateSpecialization' is no longer | Ted Kremenek |
2011-01-14 | Start implementing support for substitution into pack expansions that | Douglas Gregor |
2011-01-13 | Only apply the parameter pack matching of C++0x [temp.arg.template]p3 | Douglas Gregor |
2011-01-13 | Implement C++0x [temp.arg.template]p3, which allows slightly fuzzy | Douglas Gregor |
2011-01-12 | Refactor and simplify Sema::TemplateParameterListsAreEqual. We had a | Douglas Gregor |
2011-01-11 | Add TemplateArgument::CreatePackCopy() to create a new parameter pack | Douglas Gregor |
2011-01-11 | Implement C++ [temp.func.order]p5 more directly, by passing down the | Douglas Gregor |
2011-01-10 | Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which | Douglas Gregor |
2011-01-05 | Replace the representation of template template argument pack | Douglas Gregor |
2011-01-05 | Add semantic analysis for the creation of and an AST representation | Douglas Gregor |
2011-01-05 | Update C++ [temp.param]p11 citation to reflect the changes in C++0x. No funct... | Douglas Gregor |
2011-01-05 | Implement C++0x [temp.param]p11 for non-type and template template | Douglas Gregor |
2011-01-05 | Implement proper parameter pack matching for non-type template | Douglas Gregor |
2011-01-05 | Implement support for template template parameter packs, e.g., | Douglas Gregor |
2011-01-04 | Improve our handling of non-type template parameters in partial | Douglas Gregor |
2011-01-03 | Properly rebuild pack expansions whose pattern is a non-type template | Douglas Gregor |
2011-01-03 | Unwrap template argument packs when checking the template arguments of | Douglas Gregor |
2011-01-03 | Diagnose the presence of unexpanded parameter packs within class | Douglas Gregor |
2010-12-24 | Non-type template parameter packs cannot have default arguments. | Douglas Gregor |
2010-12-23 | Add an AST representation for non-type template parameter | Douglas Gregor |
2010-12-23 | Implement parsing of function parameter packs and non-type template | Douglas Gregor |
2010-12-23 | Reimplement the comparison of a class template partial | Douglas Gregor |
2010-12-21 | Tweak the checking of class template partial specialization arguments | Douglas Gregor |