| Commit message (Expand) | Author | Age | Files | Lines |
* | Improve error for assignment to incomplete class. | Eli Friedman | 2013-08-28 | 1 | -0/+5 |
* | Revert "Implement a rudimentary form of generic lambdas." | Manuel Klimek | 2013-08-22 | 1 | -4/+0 |
* | Implement a rudimentary form of generic lambdas. | Faisal Vali | 2013-08-22 | 1 | -0/+4 |
* | Don't produce duplicate notes if we have deduction failure notes when resolving | Richard Smith | 2013-08-14 | 1 | -6/+16 |
* | Fix for PR16570: when comparing two function pointers, discard qualifiers when | Richard Trieu | 2013-08-09 | 1 | -1/+2 |
* | Omit llvm:: before ArrayRef, as we have using llvm::ArrayRef in include/clan... | Robert Wilhelm | 2013-08-09 | 1 | -5/+4 |
* | Fixing commit r187768: Moved diagnosis of forward declarations of variable te... | Larisse Voufo | 2013-08-06 | 1 | -11/+3 |
* | Fix for PR16570: when comparing two function pointers, discard qualifiers when | Richard Trieu | 2013-08-06 | 1 | -3/+11 |
* | Sema: Diagnose explicitly bound unresolved member expressions decaying into p... | David Majnemer | 2013-08-01 | 1 | -25/+42 |
* | Improve the diagnostic experience, including adding recovery, for | Kaelyn Uhrain | 2013-07-31 | 1 | -1/+8 |
* | FIXME fix: improving diagnostics for template arguments deduction of class te... | Larisse Voufo | 2013-07-19 | 1 | -103/+257 |
* | Revert "Use function overloading instead of template specialization for diagn... | Larisse Voufo | 2013-07-19 | 1 | -257/+103 |
* | Use function overloading instead of template specialization for diagnosis of ... | Larisse Voufo | 2013-07-19 | 1 | -103/+257 |
* | Move the "->" to "." fixit from r186128 into a separate note since | Kaelyn Uhrain | 2013-07-15 | 1 | -5/+3 |
* | Provide a fixit hint for changing '->' to '.' if there is no operator-> | Kaelyn Uhrain | 2013-07-11 | 1 | -4/+11 |
* | Make a couple of useful typo correction callbacks more widely available. | Kaelyn Uhrain | 2013-07-08 | 1 | -62/+2 |
* | Put helper class in anonymous namespace. | Craig Topper | 2013-07-01 | 1 | -0/+4 |
* | Reinstate r185229, reverted in r185256, with a tweak: further ignore the | Richard Smith | 2013-06-30 | 1 | -35/+13 |
* | Revert r185229 as it breaks compilation of <windows.h> | Timur Iskhodzhanov | 2013-06-29 | 1 | -13/+35 |
* | PR7927, PR16247: Reimplement handling of matching extern "C" declarations | Richard Smith | 2013-06-28 | 1 | -35/+13 |
* | A bit of program simplification from r185056 | Larisse Voufo | 2013-06-27 | 1 | -2/+1 |
* | Fix a conversion to incomplete type bug -- The error message now specifically... | Larisse Voufo | 2013-06-27 | 1 | -4/+9 |
* | More of N3652: don't add an implicit 'const' to 'constexpr' member functions ... | Richard Smith | 2013-06-25 | 1 | -1/+2 |
* | Extend -Wnon-pod-varargs to check calls made from member pointers. | Richard Trieu | 2013-06-22 | 1 | -0/+3 |
* | Introduce a new mangling for protocol-qualified ObjC types in C++. This allows | Eli Friedman | 2013-06-18 | 1 | -36/+3 |
* | A quick fix to allow return type deduction on member templates | Faisal Vali | 2013-06-15 | 1 | -2/+19 |
* | Don't suggest putting 'operator new' or 'operator delete' in a namespace to f... | Richard Smith | 2013-06-12 | 1 | -15/+30 |
* | Support for contextual conversion tweaks (N3323) was added, as Revision 183637 | Larisse Voufo | 2013-06-10 | 1 | -2/+2 |
* | reverted test | Larisse Voufo | 2013-06-10 | 1 | -93/+241 |
* | Refactor places which perform contextual implicit conversions to go through a | Richard Smith | 2013-05-21 | 1 | -44/+39 |
* | PR15966: don't get confused by a complex integer -> complex integer conversion | Richard Smith | 2013-05-10 | 1 | -1/+1 |
* | ArrayRef'ize Sema::BuildCallToObjectOfClassType | Dmitri Gribenko | 2013-05-09 | 1 | -25/+19 |
* | ArrayRef'ize some SemaOverload methods | Dmitri Gribenko | 2013-05-09 | 1 | -56/+44 |
* | Grab-bag of bit-field fixes: | John McCall | 2013-05-06 | 1 | -1/+1 |
* | Replace 'MultiExprArg()' with 'None' | Dmitri Gribenko | 2013-05-05 | 1 | -2/+2 |
* | ArrayRef'ization of some methods in SemaOverload. Patch by Robert Wilhelm! | Richard Smith | 2013-05-05 | 1 | -117/+98 |
* | Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr... | Dmitri Gribenko | 2013-05-05 | 1 | -2/+1 |
* | Implement most of N3638 (return type deduction for normal functions). | Richard Smith | 2013-05-04 | 1 | -0/+20 |
* | Don't build a call expression referring to a function which we're not allowed | Richard Smith | 2013-05-04 | 1 | -4/+9 |
* | Use ArrayRef in AddMethodCandidate. | Rafael Espindola | 2013-04-29 | 1 | -6/+9 |
* | Implement core issue 1608: class members can be found via operator lookup in ... | Richard Smith | 2013-04-20 | 1 | -6/+8 |
* | Fix PR15291: noreturn adjustment in overload resolution for function template... | Douglas Gregor | 2013-04-17 | 1 | -5/+8 |
* | Remove hasExternalLinkageUncached. | Rafael Espindola | 2013-04-15 | 1 | -0/+3 |
* | <rdar://problem/13584715> Converted constant expressions are expected to have... | Douglas Gregor | 2013-04-08 | 1 | -1/+1 |
* | Fix PR15634, better error message for template deduction failure. | Richard Trieu | 2013-04-08 | 1 | -4/+26 |
* | Complain about attempts to befriend declarations via a using | John McCall | 2013-04-03 | 1 | -1/+2 |
* | <rdar://problem/13267210> Ensure that Sema::CompareReferenceRelationship retu... | Douglas Gregor | 2013-03-26 | 1 | -1/+11 |
* | Avoid computing the linkage too early. Don't invalidate it. | Rafael Espindola | 2013-03-14 | 1 | -15/+23 |
* | Fix initializer for variables with attribute address_space set. | Matt Arsenault | 2013-02-26 | 1 | -5/+1 |
* | Remove the hack that avoided mangling static functions in extern C contexts. | Rafael Espindola | 2013-02-23 | 1 | -8/+0 |