| Commit message (Expand) | Author | Age | Files | Lines |
| * | Top-level const changes do not make a qualification conversion. Fixes PR6089. | Sebastian Redl | 2010-02-03 | 1 | -1/+1 |
| * | Implement promotion for enumeration types. | Douglas Gregor | 2010-02-02 | 1 | -1/+2 |
| * | Extract a common base class between UnresolvedLookupExpr and | John McCall | 2010-02-02 | 1 | -69/+24 |
| * | Improve the diagnostic used when an incompatible overload set is passed | John McCall | 2010-02-02 | 1 | -0/+18 |
| * | Note that an overload candidate was non-viable because template argument | John McCall | 2010-02-01 | 1 | -4/+58 |
| * | And yet another call. | Anders Carlsson | 2010-01-29 | 1 | -2/+8 |
| * | Another PerformCopyInitialization call bites the dust. | Anders Carlsson | 2010-01-29 | 1 | -4/+12 |
| * | Access control for surrogate function calls. Required a moderately gross hack | John McCall | 2010-01-28 | 1 | -3/+3 |
| * | Access control for overloaded call operators. Not for surrogates yet, | John McCall | 2010-01-28 | 1 | -0/+5 |
| * | Access checking for overloaded operators. | John McCall | 2010-01-28 | 1 | -5/+6 |
| * | Fix a major oversight in the comparison of standard conversion | Douglas Gregor | 2010-01-27 | 1 | -29/+56 |
| * | Implement access control for overloaded functions. Suppress access control | John McCall | 2010-01-27 | 1 | -27/+57 |
| * | Avoid some unnecessary copying of unresolved lookup results. | John McCall | 2010-01-26 | 1 | -16/+12 |
| * | Handle redeclarations found by ADL deterministically and reasonably. | John McCall | 2010-01-26 | 1 | -6/+5 |
| * | Allow ADL to find functions imported by using decls. Leave wordy comment | John McCall | 2010-01-26 | 1 | -2/+7 |
| * | Preserve access bits through overload resolution much better. Some | John McCall | 2010-01-26 | 1 | -52/+45 |
| * | Pass access specifiers around in overload resolution. | John McCall | 2010-01-26 | 1 | -31/+53 |
| * | Produce a special diagnostic when users call a function with an argument of | John McCall | 2010-01-23 | 1 | -1/+16 |
| * | During overload resolution diagnostics, sort non-viable candidates by the qua... | John McCall | 2010-01-23 | 1 | -4/+112 |
| * | Use raw_ostream instead of cstdio. | Daniel Dunbar | 2010-01-22 | 1 | -19/+21 |
| * | Fixes comments. | Fariborz Jahanian | 2010-01-21 | 1 | -2/+2 |
| * | Also allow cast of block pointer type to | Fariborz Jahanian | 2010-01-21 | 1 | -0/+7 |
| * | In objective-c++ land, a block pointer is another object pointer. | Fariborz Jahanian | 2010-01-20 | 1 | -1/+9 |
| * | Give UnresolvedSet the ability to store access specifiers for each declaration. | John McCall | 2010-01-20 | 1 | -8/+8 |
| * | Allow conversion of pointer to an objective-c pointer to | Fariborz Jahanian | 2010-01-18 | 1 | -1/+11 |
| * | Fix a use of uninitialized memory in overload diagnostics. | John McCall | 2010-01-16 | 1 | -1/+4 |
| * | Candidates with arity mismatches are extra-special non-viable and need to | John McCall | 2010-01-15 | 1 | -16/+32 |
| * | Improve overload diagnostics some more by calling out qualifier mismatches | John McCall | 2010-01-14 | 1 | -3/+55 |
| * | Improve the diagnostic for bad conversions in overload resolution to talk | John McCall | 2010-01-14 | 1 | -1/+1 |
| * | Don't report ambiguities in the user-defined conversion if we weren't supposed | John McCall | 2010-01-13 | 1 | -1/+1 |
| * | Record some basic information about bad conversion sequences. Use that | John McCall | 2010-01-13 | 1 | -60/+89 |
| * | Improve the reporting of non-viable overload candidates by noting the reason | John McCall | 2010-01-13 | 1 | -44/+107 |
| * | So I was sitting around, trying vainly to think of something to commit, and then | John McCall | 2010-01-12 | 1 | -21/+22 |
| * | Reorganize some of the code to note overload candidates. Improves the | John McCall | 2010-01-12 | 1 | -39/+56 |
| * | Sort overload results by viability. | John McCall | 2010-01-12 | 1 | -10/+19 |
| * | Introduce a specific representation for the ambiguous implicit conversion | John McCall | 2010-01-12 | 1 | -135/+132 |
| * | When computing surrogates for calls to a value of object type, look | Douglas Gregor | 2010-01-11 | 1 | -2/+1 |
| * | Remove some pointless FIXMEs. No functionality change | Douglas Gregor | 2010-01-11 | 1 | -5/+0 |
| * | Implement name lookup for conversion function template specializations | Douglas Gregor | 2010-01-11 | 1 | -4/+0 |
| * | Change the printing of OR_Deleted overload results to print all the candidates, | John McCall | 2010-01-08 | 1 | -36/+80 |
| * | Reorganize PrintOverloadCandidates. No functionality change. | John McCall | 2010-01-08 | 1 | -113/+144 |
| * | Add an "implicit" bit to CXXThisExpr, so that we can track | Douglas Gregor | 2010-01-07 | 1 | -3/+8 |
| * | Improve the lead diagnostic for C++ object subscript expressions with | John McCall | 2010-01-07 | 1 | -13/+19 |
| * | Improve the diagnostics used to report implicitly-generated class members | John McCall | 2010-01-06 | 1 | -11/+49 |
| * | Implement typo correction for id-expressions, e.g., | Douglas Gregor | 2009-12-31 | 1 | -1/+1 |
| * | Correctly refer to element CVR qualifications when determining if a type is | Chandler Carruth | 2009-12-29 | 1 | -2/+21 |
| * | Handle using declarations in overloaded and template functions during ADL and | Chandler Carruth | 2009-12-29 | 1 | -3/+6 |
| * | move a few more symbols to .rodata/.data.rel.ro | Nuno Lopes | 2009-12-23 | 1 | -1/+1 |
| * | Fix DISABLE_SMART_POINTERS build | Douglas Gregor | 2009-12-23 | 1 | -5/+6 |
| * | Switch Sema::CreateOverloadedUnaryOp over to InitializationSequence. | Douglas Gregor | 2009-12-23 | 1 | -3/+8 |