| Commit message (Expand) | Author | Age | Files | Lines |
| * | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall | 2009-09-21 | 1 | -13/+13 |
| * | Merge uninstantiated default arguments more carefully, and try not to | Douglas Gregor | 2009-09-17 | 1 | -2/+6 |
| * | Improved representation and support for friend class templates. Angst about ... | John McCall | 2009-09-16 | 1 | -33/+55 |
| * | When implicitly declaring operators new, new[], delete, and delete[], | Douglas Gregor | 2009-09-15 | 1 | -0/+15 |
| * | Add back the workaround since it lead to constructor conversion bugs :( | Anders Carlsson | 2009-09-15 | 1 | -0/+6 |
| * | When performing an user defined conversion sequence, perform the initial stan... | Anders Carlsson | 2009-09-15 | 1 | -6/+0 |
| * | Skeletal support for friend class templates. | John McCall | 2009-09-14 | 1 | -1/+24 |
| * | Removed Context argument from couple of methods which don't | Fariborz Jahanian | 2009-09-12 | 1 | -2/+2 |
| * | Alter Action's friend interface to prepare for templated friend declarations and | John McCall | 2009-09-11 | 1 | -23/+13 |
| * | Cleanup and test C++ default arguments. Improvements include: | Douglas Gregor | 2009-09-11 | 1 | -4/+55 |
| * | When re-entering a template scope, we may be entering a class template | Douglas Gregor | 2009-09-10 | 1 | -3/+11 |
| * | Improve handling of initialization by constructor, by ensuring that | Douglas Gregor | 2009-09-09 | 1 | -120/+171 |
| * | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -403/+400 |
| * | Support templateids in friend declarations. Fixes bug 4859. | John McCall | 2009-09-08 | 1 | -49/+47 |
| * | Handle variadic constructors better. Share code between BuildCXXConstructExpr... | Anders Carlsson | 2009-09-08 | 1 | -25/+59 |
| * | BuildCXXConstructExpr now takes a MultiExprArg. | Anders Carlsson | 2009-09-07 | 1 | -9/+12 |
| * | Reapply 81096, now with a fix. Spot the bug: | Anders Carlsson | 2009-09-06 | 1 | -2/+2 |
| * | Revert "Initialize default CXXConstructExpr arguments to 0. Fixes a crash when | Daniel Dunbar | 2009-09-06 | 1 | -2/+2 |
| * | Initialize default CXXConstructExpr arguments to 0. Fixes a crash when destro... | Anders Carlsson | 2009-09-05 | 1 | -2/+2 |
| * | Pass the ConstructLoc to BuildCXXConstructExpr. | Anders Carlsson | 2009-09-05 | 1 | -12/+10 |
| * | Don't generate any code for an explicit call to a trivial destructor. | Douglas Gregor | 2009-09-04 | 1 | -1/+1 |
| * | Patch to instantiate destructors used to destruct | Fariborz Jahanian | 2009-09-03 | 1 | -0/+75 |
| * | Mark constructors used in initialization of base(s) and fields | Fariborz Jahanian | 2009-09-03 | 1 | -25/+37 |
| * | Issue diagnostics in variety of situations involving | Fariborz Jahanian | 2009-09-03 | 1 | -3/+176 |
| * | Minor refactoring of my last patch. | Fariborz Jahanian | 2009-09-02 | 1 | -5/+5 |
| * | Referenced instatiated default constructors | Fariborz Jahanian | 2009-09-02 | 1 | -1/+19 |
| * | Allow null initialization of scalara data members | Fariborz Jahanian | 2009-09-02 | 1 | -2/+8 |
| * | Don't assume that a base is always a RecordType, it can also be a TemplateSpe... | Anders Carlsson | 2009-09-01 | 1 | -5/+16 |
| * | Fix bug 4784 and allow friend declarations to properly extend | John McCall | 2009-08-31 | 1 | -4/+16 |
| * | Use DiagnoseMissingMember for UsingDecls. | Anders Carlsson | 2009-08-30 | 1 | -1/+1 |
| * | Improve diagnostics for missing members. This renames the err_typecheck_no_me... | Anders Carlsson | 2009-08-30 | 1 | -1/+1 |
| * | Set the access specifier for using decls. | Anders Carlsson | 2009-08-29 | 1 | -1/+4 |
| * | For consistency, just make friend declarations AS_public. | John McCall | 2009-08-29 | 1 | -0/+2 |
| * | Store the SourceLocation of right parentheses in member initializers. Patch b... | Anders Carlsson | 2009-08-29 | 1 | -2/+2 |
| * | Fix this for real. | Anders Carlsson | 2009-08-28 | 1 | -1/+2 |
| * | Pass InOverloadResolution all the way down to IsPointerConversion. | Anders Carlsson | 2009-08-28 | 1 | -1/+2 |
| * | Instantiate unresolved using declarations. | Anders Carlsson | 2009-08-28 | 1 | -2/+3 |
| * | Omnibus friend decl refactoring. Instead of cloning AST classes for friend | John McCall | 2009-08-28 | 1 | -111/+119 |
| * | Create UnresolvedUsingDecls. | Anders Carlsson | 2009-08-28 | 1 | -10/+9 |
| * | Factor declaration building out to Sema::BuildUsingDeclaration. | Anders Carlsson | 2009-08-28 | 1 | -18/+28 |
| * | More work on using declarations. | Anders Carlsson | 2009-08-28 | 1 | -1/+9 |
| * | Many improvements to using declarations. | Anders Carlsson | 2009-08-28 | 1 | -19/+68 |
| * | Remove more default arguments. | Anders Carlsson | 2009-08-27 | 1 | -2/+2 |
| * | Remove default arguments from TryImplicitConversion and fix a bug found in th... | Anders Carlsson | 2009-08-27 | 1 | -1/+4 |
| * | Revert the flags change for now, I have a better idea for this. | Anders Carlsson | 2009-08-27 | 1 | -4/+1 |
| * | Add a OverloadResolutionFlags and start converting some of the overload metho... | Anders Carlsson | 2009-08-27 | 1 | -1/+4 |
| * | Don't check member and base initializers if the constructor is dependent. | Anders Carlsson | 2009-08-27 | 1 | -27/+33 |
| * | Use early returns to avoid indentation. | Anders Carlsson | 2009-08-27 | 1 | -72/+76 |
| * | Stub out an error so we don't crash. | Eli Friedman | 2009-08-27 | 1 | -1/+8 |
| * | Add a BuildCXXTemporaryObjectExpr and use it so default arguments will be ins... | Anders Carlsson | 2009-08-27 | 1 | -1/+32 |