| Commit message (Expand) | Author | Age | Files | Lines |
| * | Eliminate the ASTContext argument to CXXConstructorDecl::isCopyConstructor, s... | Douglas Gregor | 2009-12-22 | 1 | -1/+1 |
| * | When converting from a type to itself or one of its base classes via a | Douglas Gregor | 2009-12-22 | 1 | -1/+2 |
| * | When a template-id refers to a single function template, and the | Douglas Gregor | 2009-12-21 | 1 | -0/+87 |
| * | Allow pointer convesion of an objective-c pointer to | Fariborz Jahanian | 2009-12-16 | 1 | -2/+28 |
| * | Shift things around so that it's easier to recover from a missing | John McCall | 2009-12-16 | 1 | -54/+105 |
| * | Introduce a centralized routine in Sema for diagnosing failed lookups (when | John McCall | 2009-12-16 | 1 | -1/+49 |
| * | Fix semantic diagnostics that embed English works, from Nicola Gigante! | Douglas Gregor | 2009-12-16 | 1 | -16/+16 |
| * | Fix PR5756 a different, better way: we don't have a "pointer | Douglas Gregor | 2009-12-13 | 1 | -25/+20 |
| * | Don't assume that all conversions to a void pointer are converting | Douglas Gregor | 2009-12-13 | 1 | -20/+25 |
| * | Consider conversion of objective-c pointer to 'bool' a | Fariborz Jahanian | 2009-12-11 | 1 | -1/+1 |
| * | Implement redeclaration checking and hiding semantics for using declarations.... | John McCall | 2009-12-10 | 1 | -4/+11 |
| * | Reimplement reference initialization (C++ [dcl.init.ref]) using the | Douglas Gregor | 2009-12-09 | 1 | -11/+15 |
| * | First pass at implementing C++ enum semantics: calculate (and store) an | John McCall | 2009-12-09 | 1 | -9/+11 |
| * | Whitespace fix. | Eli Friedman | 2009-12-09 | 1 | -2/+1 |
| * | Rename Sema::IsOverload to Sema::CheckOverload. Teach it to ignore unresolved | John McCall | 2009-12-09 | 1 | -13/+15 |
| * | Implemented an implicit conversion from "noreturn" function types (and | Douglas Gregor | 2009-12-09 | 1 | -3/+29 |
| * | Honor using declarations in overload resolution. Most of the code for | John McCall | 2009-12-03 | 1 | -56/+86 |
| * | r90313, in which OverloadedFunctionDecl is removed and never spoken of again. | John McCall | 2009-12-02 | 1 | -22/+23 |
| * | Rework how we support C++ implicit member accesses. If we can resolve an | John McCall | 2009-12-01 | 1 | -42/+75 |
| * | Eliminate the use of OverloadedFunctionDecl in member expressions. | John McCall | 2009-11-30 | 1 | -51/+41 |
| * | Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. | Benjamin Kramer | 2009-11-28 | 1 | -1/+0 |
| * | Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and | John McCall | 2009-11-24 | 1 | -61/+30 |
| * | Do not mark declarations as used when performing overload resolution. Fixes P... | Douglas Gregor | 2009-11-23 | 1 | -0/+15 |
| * | Centralize and complete the computation of value- and type-dependence for Dec... | Douglas Gregor | 2009-11-23 | 1 | -10/+5 |
| * | Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations... | John McCall | 2009-11-23 | 1 | -71/+56 |
| * | Consider a FunctionTemplate to be an overload all on its lonesome. Track | John McCall | 2009-11-22 | 1 | -3/+8 |
| * | Overload resolution doesn't decide whether to do ADL or not anymore; stopping | John McCall | 2009-11-21 | 1 | -12/+3 |
| * | "Incremental" progress on using expressions, by which I mean totally ripping | John McCall | 2009-11-21 | 1 | -158/+138 |
| * | Teach FixOverloadedFunctionReference to build new expression ASTs rather | Douglas Gregor | 2009-11-20 | 1 | -45/+112 |
| * | Do overload resolution for compound assignment even if only the RHS is overlo... | Sebastian Redl | 2009-11-18 | 1 | -5/+7 |
| * | Overhaul previous-declaration and overload checking to work on lookup results | John McCall | 2009-11-18 | 1 | -83/+85 |
| * | Pretend destructors are const and volatile. This allows calling them with con... | Sebastian Redl | 2009-11-18 | 1 | -3/+6 |
| * | Don't generate superfluous and ambiguous built-in candidates for multi-level ... | Sebastian Redl | 2009-11-18 | 1 | -0/+12 |
| * | Improve on diagnosing type mismatches because of | Fariborz Jahanian | 2009-11-18 | 1 | -8/+13 |
| * | Split LookupResult into its own header. | John McCall | 2009-11-18 | 1 | -0/+1 |
| * | Make CreateOverloadedUnaryOp build the correct node for postinc/dec operators. | Eli Friedman | 2009-11-18 | 1 | -2/+2 |
| * | PR5520: Make sure to check whether the base type is complete before looking for | Eli Friedman | 2009-11-18 | 1 | -0/+5 |
| * | Improve location information when adding conversion candidates | Douglas Gregor | 2009-11-17 | 1 | -2/+2 |
| * | Store "sugared" decls in LookupResults (i.e. decl aliases like using declarat... | John McCall | 2009-11-17 | 1 | -24/+32 |
| * | Carry lookup configuration throughout lookup on the LookupResult. Give | John McCall | 2009-11-17 | 1 | -7/+11 |
| * | First part of changes to eliminate problems with cv-qualifiers and | Douglas Gregor | 2009-11-16 | 1 | -24/+23 |
| * | When looking for operator() to type-check a call to an object of class | Douglas Gregor | 2009-11-15 | 1 | -7/+9 |
| * | - Have TryStaticImplicitCast set the cast kind to NoOp when binding a referen... | Sebastian Redl | 2009-11-14 | 1 | -3/+7 |
| * | If we attempt to add a constructor template specialization that looks | Douglas Gregor | 2009-11-14 | 1 | -2/+13 |
| * | Revert r88718, which does NOT solve the constructor-template-as-copy-construc... | Douglas Gregor | 2009-11-13 | 1 | -3/+1 |
| * | A constructor template cannot be instantiated to a copy | Douglas Gregor | 2009-11-13 | 1 | -1/+3 |
| * | When performing copy initialization (= "implicit conversion", here) to | Douglas Gregor | 2009-11-13 | 1 | -5/+10 |
| * | When comparing template parameter lists, distinguish between three cases: | Douglas Gregor | 2009-11-12 | 1 | -1/+1 |
| * | Make sure that Type::getAs<ArrayType>() (or Type::getAs<subclass of | Douglas Gregor | 2009-11-09 | 1 | -1/+1 |
| * | For array pointee type, get its cvr qualifier from | Fariborz Jahanian | 2009-11-09 | 1 | -0/+2 |