| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement conversion function templates, along with the ability to use | Douglas Gregor | 2009-08-21 | 3 | -0/+114 |
* | Refactor instantiation of destructors to use the common CXXMethodDecl | Douglas Gregor | 2009-08-21 | 1 | -0/+11 |
* | Add test for out-of-line definition of a conversion function | Douglas Gregor | 2009-08-21 | 1 | -0/+7 |
* | Fix parsing for out-of-line definitions of constructors and | Douglas Gregor | 2009-08-21 | 1 | -1/+10 |
* | Basic nested-template implementation. | John McCall | 2009-08-20 | 1 | -0/+16 |
* | Support friend declarations in templates and test that argdep lookup | John McCall | 2009-08-14 | 1 | -0/+20 |
* | Argument-dependent lookup for friend declarations. Add a new decl type, | John McCall | 2009-08-11 | 1 | -0/+42 |
* | Permit a class to friend its members in C++0x, without restriction. | John McCall | 2009-08-06 | 1 | -2/+2 |
* | When we encounter a dependent type that was parsed before we know that | Douglas Gregor | 2009-08-06 | 1 | -1/+0 |
* | First pass at friend semantics. | John McCall | 2009-08-06 | 4 | -3/+78 |
* | AlisdairM pointed out that this will likely be relaxed in C++0x, so let's | John McCall | 2009-08-06 | 1 | -0/+3 |
* | Add a test for invalid uses of non-static members from nested classes, just | John McCall | 2009-08-05 | 1 | -0/+11 |
* | Make the recanonicalization-for-an-out-of-line-definition test case a bit tri... | Douglas Gregor | 2009-07-31 | 1 | -1/+18 |
* | Support out-of-line definitions of the members of class template | Douglas Gregor | 2009-07-30 | 2 | -0/+40 |
* | Use the new statement/expression profiling code to unique dependent | Douglas Gregor | 2009-07-29 | 1 | -1/+0 |
* | Add a template test that requires canonical expression comparison | Douglas Gregor | 2009-07-28 | 1 | -0/+17 |
* | Update for LLVM API change. | Owen Anderson | 2009-07-27 | 9 | -9/+9 |
* | Make having no RUN line a failure. | Daniel Dunbar | 2009-07-25 | 2 | -1/+6 |
* | Semantic checking for main(). | John McCall | 2009-07-25 | 7 | -0/+39 |
* | Template instantiation for static data members that are defined out-of-line. | Douglas Gregor | 2009-07-24 | 2 | -2/+30 |
* | Implement support for out-of-line definitions of the class members of class | Douglas Gregor | 2009-07-22 | 1 | -0/+27 |
* | Prep for new warning. | Mike Stump | 2009-07-22 | 1 | -1/+1 |
* | "This patch implements the restrictions on union members detailed in | Douglas Gregor | 2009-07-22 | 1 | -0/+105 |
* | Implement parsing and semantic analysis for out-of-line definitions of static | Douglas Gregor | 2009-07-22 | 1 | -0/+26 |
* | Test template instantiation for member functions of class templates defined | Douglas Gregor | 2009-07-22 | 1 | -0/+17 |
* | Complain if we're entering the context of a dependent nested-name-specifier but | Douglas Gregor | 2009-07-22 | 1 | -0/+4 |
* | Basic parsing and semantic analysis for out-of-line definitions of the | Douglas Gregor | 2009-07-21 | 2 | -0/+57 |
* | Revert this, we have a better way to do this. | Mike Stump | 2009-07-21 | 1 | -4/+1 |
* | Revert this, we have a better way to handle this. | Mike Stump | 2009-07-21 | 1 | -4/+1 |
* | Prep for new warning. | Mike Stump | 2009-07-21 | 1 | -3/+3 |
* | Prep for new warning. | Mike Stump | 2009-07-21 | 1 | -2/+5 |
* | Prep for new warning. | Mike Stump | 2009-07-21 | 1 | -1/+4 |
* | Fix test case to match intent. | Daniel Dunbar | 2009-07-11 | 1 | -1/+1 |
* | Add another test. | Anders Carlsson | 2009-07-11 | 1 | -0/+10 |
* | Implement more of C++0x 'auto'. A variable with an auto type specifier must h... | Anders Carlsson | 2009-07-11 | 1 | -0/+0 |
* | Another little test for C++ [over.over] | Douglas Gregor | 2009-07-09 | 1 | -0/+10 |
* | Add test for C++ [over.over.]p1, the contexts in which one can take the addre... | Douglas Gregor | 2009-07-09 | 1 | -0/+94 |
* | Store the isAddressOfOperand in the UnresolvedDeclRefExpr, so that we can pas... | Anders Carlsson | 2009-07-09 | 1 | -1/+7 |
* | Implement the simple form of overload resolution used when taking the | Douglas Gregor | 2009-07-08 | 1 | -0/+23 |
* | It's not allowed to form member pointers to members that have reference type.... | Anders Carlsson | 2009-07-08 | 1 | -0/+20 |
* | Implement template argument deduction when taking the address of a | Douglas Gregor | 2009-07-08 | 1 | -0/+22 |
* | Fix a corner case with argument-dependent lookup and overloaded function sets. | Douglas Gregor | 2009-07-08 | 1 | -0/+11 |
* | Improve argument-dependent lookup to find associated classes and | Douglas Gregor | 2009-07-08 | 2 | -0/+89 |
* | Overload resolution prefers non-templates to templates | Douglas Gregor | 2009-07-07 | 1 | -0/+16 |
* | Improve template argument deduction from a call. In particular, | Douglas Gregor | 2009-07-07 | 1 | -2/+28 |
* | Fix RUN line so this test doesn't hang. | Ted Kremenek | 2009-07-02 | 1 | -1/+1 |
* | Keep track of more information within the template instantiation stack, e.g., | Douglas Gregor | 2009-07-01 | 1 | -0/+17 |
* | Cope with explicitly-specified function template arguments when there | Douglas Gregor | 2009-07-01 | 1 | -0/+11 |
* | When explicit template arguments are provided for a function call, | Douglas Gregor | 2009-06-30 | 1 | -4/+5 |
* | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor | 2009-06-30 | 1 | -0/+11 |