Age | Commit message (Expand) | Author |
2010-04-10 | When a member pointer is dereferenced, the class it points into must be compl... | Sebastian Redl |
2010-04-08 | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin |
2010-04-07 | Check access for the implicit calls to destructors that occur when we | John McCall |
2010-04-01 | Minor cleanup with the ternary operator | Douglas Gregor |
2010-03-31 | Reinstate my CodeModificationHint -> FixItHint renaming patch, without | Douglas Gregor |
2010-03-31 | Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder | Douglas Gregor |
2010-03-31 | Rename CodeModificationHint to FixItHint, since we've been using the | Douglas Gregor |
2010-03-31 | Regularize support for naming conversion functions in using decls. | John McCall |
2010-03-30 | Propagate the "found declaration" (i.e. the using declaration instead of | John McCall |
2010-03-30 | the big refactoring bits of PR3782. | Rafael Espindola |
2010-03-26 | Remove unused static function | Douglas Gregor |
2010-03-26 | When trying to determine whether one operand of a conditional | Douglas Gregor |
2010-03-26 | Eliminate the non-InitializedEntity PerformCopyInitialization() and | Douglas Gregor |
2010-03-26 | Switch semantic analysis of the conditional operator from using | Douglas Gregor |
2010-03-25 | Kill off two more uses of Sema::CheckReferenceInit in favor of the new | Douglas Gregor |
2010-03-19 | Remember the "found declaration" for an overload candidate, which is the | John McCall |
2010-03-18 | from code inspection, we were treating placement news with one argument as | John McCall |
2010-03-11 | Warn about comparing an unsigned expression with 0 in tautological ways. | John McCall |
2010-03-10 | Create a new InjectedClassNameType to represent bare-word references to the | John McCall |
2010-03-03 | Reinstate r97674 with a fix for the assertion that was firing in <list> | Douglas Gregor |
2010-03-03 | Revert r97674; it's causing failures | Douglas Gregor |
2010-03-03 | Implement disambiguation of base class members via a | Douglas Gregor |
2010-03-02 | During codegen assert that any copy assignment, destructor or constructor that | Rafael Espindola |
2010-02-28 | Warn about the deprecated string literal -> char* conversion. Fixes PR6428. | Douglas Gregor |
2010-02-26 | Implement semantic analysis for C++ [expr.new]p18-20, which describe | Douglas Gregor |
2010-02-25 | When computing the composite pointer type for relational comparisons, | Douglas Gregor |
2010-02-25 | Restore the invariant that a nested-name-specifier can only contain | Douglas Gregor |
2010-02-25 | Use CXXPseudoDestructorExpr as the stored representation for dependent | Douglas Gregor |
2010-02-25 | Catch more uses of uninitialized implicit conversion sequences. | John McCall |
2010-02-24 | Keep track of the location of the '~' in a pseudo-destructor expression. | Douglas Gregor |
2010-02-24 | Retain complete source information for the type after the '~' in a | Douglas Gregor |
2010-02-24 | Make sure that we have type source information for the scope type of a | Douglas Gregor |
2010-02-24 | Split ActOnPseudoDestructorExpr into the part that interprets the | Douglas Gregor |
2010-02-24 | Retain source information for the "type-name ::" in a | Douglas Gregor |
2010-02-24 | ActOnPseudoDestructorExpr now performs all semantic analysis for | Douglas Gregor |
2010-02-24 | Rework parsing of pseudo-destructor expressions and explicit | Douglas Gregor |
2010-02-23 | Implement crazy destructor name lookup semantics differently in | Douglas Gregor |
2010-02-21 | Eliminate the default arguments to ASTContext::getFunctionType(), | Douglas Gregor |
2010-02-21 | Implement support for parsing pseudo-destructor expression with a nested-name... | Douglas Gregor |
2010-02-21 | Commiting a revert from dgregor of a bit of destructor logic until we can | Chandler Carruth |
2010-02-18 | Fixed a crash specific to blocks in c++ uncovered by an internal | Fariborz Jahanian |
2010-02-16 | Improve parsing and instantiation of destructor names, so that we can | Douglas Gregor |
2010-02-11 | Fix leak in CXXNewExpr where the SubExprs array would get allocated directly ... | Ted Kremenek |
2010-02-11 | Eliminate a bunch of unnecessary ASTContexts from members functions of | Douglas Gregor |
2010-02-08 | Thread a source location into the template-argument deduction routines. There | John McCall |
2010-02-05 | When we're parsing an expression that may have looked like a | Douglas Gregor |
2010-02-04 | Extract a common structure for holding information about the definition | John McCall |
2010-02-03 | Teach the allocation function overload handling to deal with templates, and | Chandler Carruth |
2010-02-03 | Implement the lvalue-to-rvalue conversion where needed. The | Douglas Gregor |
2010-01-31 | Switch expressions like T() and T(1,2) over to new-style initialization. I'm | Eli Friedman |