| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Unify our diagnostic printing for errors of the form, "we didn't like | Douglas Gregor | 2009-10-13 | 1 | -1/+2 |
* | Diagnose attempts to add default function arguments to a | Douglas Gregor | 2009-10-13 | 1 | -0/+16 |
* | Improve the internal representation and semantic analysis of friend | Douglas Gregor | 2009-10-13 | 1 | -3/+2 |
* | Test exception spec compatibility on return type and parameters. | Sebastian Redl | 2009-10-11 | 1 | -10/+0 |
* | Implement the core checking for compatible exception specifications in assign... | Sebastian Redl | 2009-10-10 | 1 | -1/+7 |
* | Refactor the LookupResult API to simplify most common operations. Require us... | John McCall | 2009-10-09 | 1 | -17/+26 |
* | Fix up error reporting when object cannot be constructed | Fariborz Jahanian | 2009-10-08 | 1 | -2/+3 |
* | Refactoring around friend class templates. Better error message for friend e... | John McCall | 2009-10-07 | 1 | -17/+9 |
* | Refactor the code that walks a C++ inheritance hierarchy, searching | Douglas Gregor | 2009-10-06 | 1 | -4/+138 |
* | Anonymous namespaces, sema + codegen. A lot of semantics are still broken, | John McCall | 2009-10-01 | 1 | -1/+32 |
* | Issue good diagnostics when initializing a refernce type with | Fariborz Jahanian | 2009-09-30 | 1 | -3/+8 |
* | Desugaring optimizations. Add single-step desugaring methods to all | John McCall | 2009-09-29 | 1 | -3/+3 |
* | Introduce ObjCProtocolListLoc for keeping source location information for pro... | Argyrios Kyrtzidis | 2009-09-29 | 1 | -1/+2 |
* | Minor API change. No change in functionality. | Fariborz Jahanian | 2009-09-28 | 1 | -1/+1 |
* | Improve handling of friend function templates somewhat | Douglas Gregor | 2009-09-28 | 1 | -41/+19 |
* | Rework the Parse-Sema interaction for friends to better support friend | Douglas Gregor | 2009-09-26 | 1 | -8/+0 |
* | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall | 2009-09-24 | 1 | -11/+9 |
* | Use Doug's DeclLoc to pinpoint location of the declaration | Fariborz Jahanian | 2009-09-24 | 1 | -1/+1 |
* | Improve diagnostic location information when checking the initialization of a... | Douglas Gregor | 2009-09-23 | 1 | -14/+11 |
* | patch to ir-gen conversion function call used in | Fariborz Jahanian | 2009-09-23 | 1 | -4/+9 |
* | Remove the FIXME as I said. | Fariborz Jahanian | 2009-09-23 | 1 | -1/+0 |
* | This patch addresses a few issues related to 8.5.3 [dcl.init.ref] | Fariborz Jahanian | 2009-09-23 | 1 | -3/+23 |
* | 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 |