| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | When we are instantiating a member function of a local class, be sure | Douglas Gregor | 2010-01-16 | 1 | -2/+8 |
* | Typedefs can be redeclared. That seems like something we should record in | John McCall | 2009-12-30 | 1 | -0/+5 |
* | Egregious, disgusting workaround for PR5866. We need to rework how we | Douglas Gregor | 2009-12-24 | 1 | -2/+5 |
* | Add using shadow decls to the "instantiated locals" map, fixing PR5847. | John McCall | 2009-12-22 | 1 | -0/+5 |
* | Patch over yet more problems with friend declarations which were provoking | John McCall | 2009-12-17 | 1 | -1/+7 |
* | Link up member-class redeclarations during template instantiation. | John McCall | 2009-12-15 | 1 | -0/+6 |
* | Fix PR5716 by bandaging over the solution until we can come back to it. | John McCall | 2009-12-14 | 1 | -1/+6 |
* | Improve template instantiation for object constructions in several ways: | Douglas Gregor | 2009-12-14 | 1 | -69/+96 |
* | Rework the way we handle template instantiation for | Douglas Gregor | 2009-12-12 | 1 | -11/+42 |
* | Implement redeclaration checking and hiding semantics for using declarations.... | John McCall | 2009-12-10 | 1 | -20/+53 |
* | Implement template instantiation for exception specifications. Also, | Douglas Gregor | 2009-12-08 | 1 | -0/+37 |
* | Correctly implement the C++03 and 0x restrictions on class-member using | John McCall | 2009-12-08 | 1 | -9/+4 |
* | DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia... | John McCall | 2009-12-07 | 1 | -14/+14 |
* | Fix "using typename" and the instantiation of non-dependent using declarations. | John McCall | 2009-12-04 | 1 | -6/+78 |
* | A new helper function to set various bits in the class when | Fariborz Jahanian | 2009-12-03 | 1 | -7/+2 |
* | When we're building a CXXExprWithTemporaries, only include those | Douglas Gregor | 2009-12-03 | 1 | -0/+6 |
* | Improve source location information for C++ member initializers in a | Douglas Gregor | 2009-12-02 | 1 | -6/+12 |
* | Funtion templates and function template specializations do not | Douglas Gregor | 2009-12-01 | 1 | -2/+0 |
* | Move the checking of overridden virtual functions into the code path | Douglas Gregor | 2009-12-01 | 1 | -4/+3 |
* | Remove all of Sema's explicit uses of OverloadedFunctionDecl except for | John McCall | 2009-11-30 | 1 | -16/+0 |
* | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer | 2009-11-28 | 1 | -2/+1 |
* | Fix a crash when "instantiating" VarDecls that are neither type nor value dep... | Anders Carlsson | 2009-11-24 | 1 | -0/+1 |
* | Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations... | John McCall | 2009-11-23 | 1 | -11/+7 |
* | Overhaul previous-declaration and overload checking to work on lookup results | John McCall | 2009-11-18 | 1 | -21/+19 |
* | Track overriding methods when instantiating a template class. Fixes PR5550. | Sebastian Redl | 2009-11-18 | 1 | -0/+2 |
* | Split LookupResult into its own header. | John McCall | 2009-11-18 | 1 | -6/+7 |
* | Incremental progress on using declarations. Split UnresolvedUsingDecl into | John McCall | 2009-11-18 | 1 | -7/+49 |
* | 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 |