| Commit message (Expand) | Author | Age | Files | Lines |
| * | "Incremental" progress on using expressions, by which I mean totally ripping | John McCall | 2009-11-21 | 1 | -16/+7 |
| * | Added rudimentary C++0x attribute support. | Alexis Hunt | 2009-11-21 | 1 | -0/+20 |
| * | Overhaul previous-declaration and overload checking to work on lookup results | John McCall | 2009-11-18 | 1 | -11/+11 |
| * | Split LookupResult into its own header. | John McCall | 2009-11-18 | 1 | -7/+5 |
| * | Incremental progress on using declarations. Split UnresolvedUsingDecl into | John McCall | 2009-11-18 | 1 | -12/+50 |
| * | Silence some warnings produced by Clang, and add a missing header | Douglas Gregor | 2009-11-17 | 1 | -1/+1 |
| * | Instead of hanging a using declaration's target decls directly off the using | John McCall | 2009-11-17 | 1 | -10/+50 |
| * | Unify the way destructor epilogues are generated for synthesized and regular ... | Anders Carlsson | 2009-11-17 | 1 | -59/+45 |
| * | Carry lookup configuration throughout lookup on the LookupResult. Give | John McCall | 2009-11-17 | 1 | -18/+19 |
| * | Simplify the AST a bit by skipping creating member initializers for members | Eli Friedman | 2009-11-16 | 1 | -8/+14 |
| * | First part of changes to eliminate problems with cv-qualifiers and | Douglas Gregor | 2009-11-16 | 1 | -8/+7 |
| * | Make sure that virtual destructors have delete operators. | Anders Carlsson | 2009-11-15 | 1 | -3/+23 |
| * | Don't gratuitously mark the default constructors of base or member initialize... | Douglas Gregor | 2009-11-15 | 1 | -22/+4 |
| * | - Have TryStaticImplicitCast set the cast kind to NoOp when binding a referen... | Sebastian Redl | 2009-11-14 | 1 | -4/+12 |
| * | When type-checking a static cast (or the static_cast part of a C-style | Douglas Gregor | 2009-11-14 | 1 | -46/+106 |
| * | If we attempt to add a constructor template specialization that looks | Douglas Gregor | 2009-11-14 | 1 | -1/+6 |
| * | Clear temporaries in more places. | Anders Carlsson | 2009-11-13 | 1 | -0/+9 |
| * | Fix bug Doug noticed. | Anders Carlsson | 2009-11-13 | 1 | -0/+13 |
| * | When transforming an expression statement (e.g., for template | Douglas Gregor | 2009-11-13 | 1 | -1/+1 |
| * | Give CanQual<T> an implicit conversion to bool, so that it can be used | Douglas Gregor | 2009-11-12 | 1 | -1/+1 |
| * | Random const correctness, and incidentally use computeDeclContext when building | John McCall | 2009-11-12 | 1 | -17/+6 |
| * | Diagnose illegally typed operator new/new[]. | Fariborz Jahanian | 2009-11-10 | 1 | -2/+21 |
| * | Improve parsing of template arguments to lay the foundation for | Douglas Gregor | 2009-11-10 | 1 | -1/+2 |
| * | Use PP.getLocForEndOfToken as suggested by John. | Anders Carlsson | 2009-11-10 | 1 | -2/+2 |
| * | If a function with a default argument is redefined and the new function also ... | Anders Carlsson | 2009-11-10 | 1 | -1/+10 |
| * | Add additional note to mark the cause of synthesized constructors. Mark | Eli Friedman | 2009-11-09 | 1 | -3/+20 |
| * | Remove a useless variable that got left behind. | Eli Friedman | 2009-11-09 | 1 | -4/+0 |
| * | Unify the codepaths used to verify base and member initializers for explicitly | Eli Friedman | 2009-11-09 | 1 | -104/+35 |
| * | Always make sure we're using an unqualified type when building a | Douglas Gregor | 2009-11-08 | 1 | -2/+2 |
| * | Make sure isCopyAssignment is only true for actual copy assignment operators, | Eli Friedman | 2009-11-07 | 1 | -1/+0 |
| * | This patch implements Sema for clause 13.3.3.1p4. | Fariborz Jahanian | 2009-11-06 | 1 | -0/+1 |
| * | Fixed two places where we needed to force completion of a type | Douglas Gregor | 2009-11-05 | 1 | -7/+10 |
| * | Comments, formatting. Based on patch by Brandon Pearcy! | John McCall | 2009-11-04 | 1 | -2/+8 |
| * | Diagnose using a field to initialize itself. Patch by Brandon Pearcy! | John McCall | 2009-11-04 | 1 | -0/+59 |
| * | Don't try to check the initialization of fields with dependent | Douglas Gregor | 2009-11-04 | 1 | -7/+16 |
| * | Switch parsing of using declarations over to ParseUnqualifiedId. | Douglas Gregor | 2009-11-04 | 1 | -12/+27 |
| * | Introduce a new class, UnqualifiedId, that provides a parsed | Douglas Gregor | 2009-11-03 | 1 | -7/+7 |
| * | Make sure to call CompleteConstructorCall for bases and members that are init... | Anders Carlsson | 2009-10-29 | 1 | -28/+53 |
| * | Use array's base element type in getting to its | Fariborz Jahanian | 2009-10-28 | 1 | -1/+1 |
| * | Removed an unnecessary arguement passed to InitializeVarWithConstructor | Fariborz Jahanian | 2009-10-28 | 1 | -3/+2 |
| * | remove a nonsensical todo | Chris Lattner | 2009-10-25 | 1 | -1/+0 |
| * | change Sema::ActOnFriendTypeDecl to use GetTypeForDeclarator instead | Chris Lattner | 2009-10-25 | 1 | -5/+6 |
| * | Audit the code for places where it is assumed that every base specifier refer... | Sebastian Redl | 2009-10-25 | 1 | -0/+2 |
| * | When building types from declarators, instead of building two types (one for | John McCall | 2009-10-22 | 1 | -2/+1 |
| * | Don't (directly) call RequireCompleteType with an invalid source location. | Douglas Gregor | 2009-10-21 | 1 | -1/+1 |
| * | Change FixOverloadedFunctionReference to return a (possibly new) expression. ... | Anders Carlsson | 2009-10-21 | 1 | -1/+1 |
| * | It's OK for a pure virtual function to override another pure virtual function... | Anders Carlsson | 2009-10-18 | 1 | -4/+2 |
| * | Testing and some minor fixes for explicit template instantiation. | Douglas Gregor | 2009-10-14 | 1 | -1/+1 |
| * | Handle ambiguity of reference initialization. | Fariborz Jahanian | 2009-10-14 | 1 | -1/+10 |
| * | Remove some non-ASCII characters | Douglas Gregor | 2009-10-13 | 1 | -2/+2 |