| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement template instantiation for using directives, which is dead simple. | Douglas Gregor | 2009-11-17 | 1 | -2/+22 |
* | Instead of hanging a using declaration's target decls directly off the using | John McCall | 2009-11-17 | 1 | -3/+3 |
* | Carry lookup configuration throughout lookup on the LookupResult. Give | John McCall | 2009-11-17 | 1 | -5/+8 |
* | If we attempt to add a constructor template specialization that looks | Douglas Gregor | 2009-11-14 | 1 | -17/+16 |
* | Revert r88718, which does NOT solve the constructor-template-as-copy-construc... | Douglas Gregor | 2009-11-13 | 1 | -30/+17 |
* | A constructor template cannot be instantiated to a copy | Douglas Gregor | 2009-11-13 | 1 | -17/+30 |
* | Improve diagnostics when a default template argument does not match | Douglas Gregor | 2009-11-11 | 1 | -0/+1 |
* | Before checking a template template argument against its corresponding | Douglas Gregor | 2009-11-11 | 1 | -1/+1 |
* | Instantiation of template template parameters for nested templates, e.g., | Douglas Gregor | 2009-11-11 | 1 | -0/+30 |
* | Improve instantiation of default template arguments for nested | Douglas Gregor | 2009-11-09 | 1 | -12/+2 |
* | When transforming an InitListExpr, if we already computed a non-dependent typ... | Douglas Gregor | 2009-11-09 | 1 | -3/+1 |
* | Add hack to make the given testcase work. As far as I can tell, this change is | Eli Friedman | 2009-11-09 | 1 | -1/+3 |
* | Don't reprocess non-dependent initializers of non-dependent VarDecls. Fixes P... | Sebastian Redl | 2009-11-08 | 1 | -0/+9 |
* | When instantiating a field decl, make sure to clone its attributes. With this... | Anders Carlsson | 2009-11-07 | 1 | -0/+16 |
* | When determining whether a reference to a static data member is an | Douglas Gregor | 2009-11-01 | 1 | -1/+1 |
* | Implement "incremental" template instantiation for non-type template | Douglas Gregor | 2009-10-31 | 1 | -6/+28 |
* | When a friend is declared in a dependent context, don't even try to | Douglas Gregor | 2009-10-30 | 1 | -2/+3 |
* | Instantiate class template friends better; fixes PR5332. | Douglas Gregor | 2009-10-30 | 1 | -1/+8 |
* | Track source information for template arguments and template specialization | John McCall | 2009-10-29 | 1 | -12/+12 |
* | Implement support for semantic checking and template instantiation of | Douglas Gregor | 2009-10-29 | 1 | -2/+205 |
* | Introduce FunctionDecl::isInlined() to tell whether a function should | Douglas Gregor | 2009-10-27 | 1 | -1/+1 |
* | Rename FunctionDecl::isInline/setInline to | Douglas Gregor | 2009-10-27 | 1 | -6/+6 |
* | Explicit instantiation suppresses the instantiation of non-inline | Douglas Gregor | 2009-10-27 | 1 | -14/+1 |
* | An explicit instantiation definition only instantiations those class | Douglas Gregor | 2009-10-27 | 1 | -11/+4 |
* | Preserve type source information in TypedefDecls. Preserve it across | John McCall | 2009-10-24 | 1 | -7/+7 |
* | Implement template instantiation for non-type template | Douglas Gregor | 2009-10-23 | 1 | -0/+39 |
* | Remove OriginalTypeParmDecl; the original type is the one specified | John McCall | 2009-10-23 | 1 | -24/+17 |
* | Preserve type source information when substituting into FieldDecls. | John McCall | 2009-10-22 | 1 | -9/+11 |
* | Revert those last two commits. Beware the treacherous semicolon. | John McCall | 2009-10-21 | 1 | -14/+14 |
* | Preserve type source information when substituting into ParmVarDecls. | John McCall | 2009-10-21 | 1 | -7/+7 |
* | Preserve type source information when substituting into FieldDecls. | John McCall | 2009-10-21 | 1 | -7/+7 |
* | Preserve source information when substituting into VarDecls. | John McCall | 2009-10-21 | 1 | -5/+6 |
* | Make sure that we're diagnosing duplicate explicit instantiation definitions. | Douglas Gregor | 2009-10-15 | 1 | -1/+4 |
* | Diagnose explicit instantiations of function templates and member | Douglas Gregor | 2009-10-15 | 1 | -3/+36 |
* | Give explicit and implicit instantiations of static data members of | Douglas Gregor | 2009-10-14 | 1 | -3/+5 |
* | Testing and some minor fixes for explicit template instantiation. | Douglas Gregor | 2009-10-14 | 1 | -1/+3 |
* | When explicitly specializing a member that is a template, mark the | Douglas Gregor | 2009-10-13 | 1 | -4/+10 |
* | Improve the internal representation and semantic analysis of friend | Douglas Gregor | 2009-10-13 | 1 | -27/+92 |
* | When declaring a class template whose name is qualified, make sure | Douglas Gregor | 2009-10-12 | 1 | -2/+6 |
* | Permit explicit specialization of member functions of class templates | Douglas Gregor | 2009-10-12 | 1 | -1/+3 |
* | Refactor the LookupResult API to simplify most common operations. Require us... | John McCall | 2009-10-09 | 1 | -2/+3 |
* | Improve checking for specializations of member classes of class | Douglas Gregor | 2009-10-08 | 1 | -1/+1 |
* | For instantiations of static data members of class templates, keep | Douglas Gregor | 2009-10-08 | 1 | -7/+21 |
* | Keep track of whether a member function instantiated from a member | Douglas Gregor | 2009-10-07 | 1 | -2/+2 |
* | Class template partial specializations can be declared anywhere that | Douglas Gregor | 2009-10-07 | 1 | -0/+9 |
* | Properly match instantiations of member function templates to the function te... | Douglas Gregor | 2009-09-28 | 1 | -0/+16 |
* | Sigh. Be *really* careful when copying a default function argument during tem... | Douglas Gregor | 2009-09-25 | 1 | -1/+3 |
* | Be careful about copying uninstantiated default arguments during template ins... | Douglas Gregor | 2009-09-25 | 1 | -2/+2 |
* | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall | 2009-09-21 | 1 | -2/+2 |
* | Teach Sema::FindInstantiatedDecl to find instantiated RecordDecls even | Douglas Gregor | 2009-09-16 | 1 | -19/+63 |