| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin | 2011-01-18 | 1 | -3/+0 | 
| *  | Tweak the partial ordering rules for function templates to prefer a | Douglas Gregor | 2011-01-16 | 1 | -2/+30 | 
| *  | Teach PackExpansionExpr to keep track of the number of pack expansions | Douglas Gregor | 2011-01-14 | 1 | -3/+0 | 
| *  | Fix a few warnings stemming from my inability to properly fill out | Douglas Gregor | 2011-01-14 | 1 | -0/+18 | 
| *  | Add TemplateArgument::CreatePackCopy() to create a new parameter pack | Douglas Gregor | 2011-01-11 | 1 | -10/+7 | 
| *  | Implement partial ordering of class template partial specializations | Douglas Gregor | 2011-01-11 | 1 | -6/+31 | 
| *  | Implement C++ [temp.func.order]p5 more directly, by passing down the | Douglas Gregor | 2011-01-11 | 1 | -149/+145 | 
| *  | Implement the last bullet of [temp.deduct.type]p5 and part of the last | Douglas Gregor | 2011-01-11 | 1 | -1/+13 | 
| *  | Implement more of C++0x [temp.arg.explicit]p9, allowing extension of | Douglas Gregor | 2011-01-10 | 1 | -9/+6 | 
| *  | Repent for my copy-and-paste sins, factoring out the code that forms | Douglas Gregor | 2011-01-10 | 1 | -108/+70 | 
| *  | Factor out the code to set up template argument deduction for a set of | Douglas Gregor | 2011-01-10 | 1 | -50/+40 | 
| *  | Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which | Douglas Gregor | 2011-01-10 | 1 | -25/+95 | 
| *  | Implement substitution of a function parameter pack for its set of | Douglas Gregor | 2011-01-07 | 1 | -1/+0 | 
| *  | Factor out the template transformation of a sequence of function | Douglas Gregor | 2011-01-07 | 1 | -13/+5 | 
| *  | Implement template argument deduction from a call to a function | Douglas Gregor | 2011-01-06 | 1 | -89/+239 | 
| *  | Fast-path an arity check when performing template argument deduction that com... | Douglas Gregor | 2011-01-05 | 1 | -2/+6 | 
| *  | Initial implementation of function parameter packs. This implementation allows: | Douglas Gregor | 2011-01-05 | 1 | -44/+218 | 
| *  | Propagate the "deduced from array bound" bit when comparing deduced | Douglas Gregor | 2011-01-05 | 1 | -5/+5 | 
| *  | When we're converting deduced template arguments to the type of the | Douglas Gregor | 2011-01-05 | 1 | -3/+27 | 
| *  | Replace the representation of template template argument pack | Douglas Gregor | 2011-01-05 | 1 | -10/+28 | 
| *  | Add semantic analysis for the creation of and an AST representation | Douglas Gregor | 2011-01-05 | 1 | -3/+4 | 
| *  | Many of the built-in operator candidates introduced into overload | Douglas Gregor | 2011-01-05 | 1 | -3/+1 | 
| *  | Eliminate some completely useless code that attempted to perform some | Douglas Gregor | 2011-01-04 | 1 | -32/+0 | 
| *  | Improve our handling of non-type template parameters in partial | Douglas Gregor | 2011-01-04 | 1 | -115/+160 | 
| *  | Remove an unnecessary FIXME for variadic templates | Douglas Gregor | 2011-01-04 | 1 | -2/+0 | 
| *  | Minor cleanups for template argument deduction in the presence of | Douglas Gregor | 2011-01-04 | 1 | -10/+3 | 
| *  | Improve the checking of deduced template arguments stored within template arg... | Douglas Gregor | 2011-01-04 | 1 | -40/+71 | 
| *  | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor | 2011-01-03 | 1 | -0/+4 | 
| *  | Fix a thinko in a helper routine for template argument deduction that | Douglas Gregor | 2010-12-24 | 1 | -4/+4 | 
| *  | Implement the part of C++0x [temp.arg.explicit]p3 that pertains to | Douglas Gregor | 2010-12-23 | 1 | -1/+11 | 
| *  | Implement the rest of C++0x [temp.deduct.type]p9, which specifies that | Douglas Gregor | 2010-12-23 | 1 | -3/+57 | 
| *  | Be paranoid about NULL size expressions in dependently-sized array types | Douglas Gregor | 2010-12-22 | 1 | -3/+4 | 
| *  | Unify the consistency checking for deduced template arguments into a | Douglas Gregor | 2010-12-22 | 1 | -125/+212 | 
| *  | Implement template argument deduction for pack expansions whose | Douglas Gregor | 2010-12-22 | 1 | -21/+154 | 
| *  | When performing template argument deduction where the argument is a | Douglas Gregor | 2010-12-22 | 1 | -12/+15 | 
| *  | Implicitly expand argument packs when performing template argument | Douglas Gregor | 2010-12-22 | 1 | -33/+98 | 
| *  | Clean up the handling of template argument packs, especially in the | Douglas Gregor | 2010-12-20 | 1 | -1/+2 | 
| *  | Introduce a new type, PackExpansionType, to capture types that are | Douglas Gregor | 2010-12-20 | 1 | -0/+6 | 
| *  | It's kindof silly that ExtQuals has an ASTContext&, and we can use that | John McCall | 2010-12-10 | 1 | -1/+3 | 
| *  | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad | 2010-12-07 | 1 | -2/+2 | 
| *  | Switch a lot of call-sites over to using the new value-kind calculations. | John McCall | 2010-11-24 | 1 | -1/+1 | 
| *  | Implement C++0x [temp.func.order]p3 (aka DR532) properly. In | Douglas Gregor | 2010-11-15 | 1 | -5/+33 | 
| *  | Implement C++ [over.match.funcs]p4 as it concerns partial ordering of | Douglas Gregor | 2010-11-12 | 1 | -4/+40 | 
| *  | Remove broken support for variadic templates, along with the various | Douglas Gregor | 2010-11-07 | 1 | -25/+26 | 
| *  | When determining which template partial specialization is more specialized, | Argyrios Kyrtzidis | 2010-11-05 | 1 | -2/+8 | 
| *  | When performing template argument deduction against a template-id, | Douglas Gregor | 2010-11-02 | 1 | -2/+9 | 
| *  | No really, we don't have a retain/release system for statements/expressions | John McCall | 2010-10-26 | 1 | -1/+1 | 
| *  | Introduce support for emitting diagnostics (warnings + their notes) | Douglas Gregor | 2010-10-12 | 1 | -4/+18 | 
| *  | Enter the context of the declared function template when performing | John McCall | 2010-10-12 | 1 | -2/+6 | 
| *  | When finalizing a function template specialization following template | Douglas Gregor | 2010-10-12 | 1 | -7/+4 |