|  | Commit message (Expand) | Author | Age | Files | Lines | 
|---|
| * | Place constructors and destructors into the DeclContext of the class, | Douglas Gregor | 2008-12-15 | 1 | -5/+19 | 
| * | In C++, set the type of each of the enumerators in an enumeration to | Douglas Gregor | 2008-12-12 | 1 | -3/+5 | 
| * | Address some comments on the name lookup/DeclContext patch from Chris | Douglas Gregor | 2008-12-11 | 1 | -3/+3 | 
| * | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 1 | -13/+10 | 
| * | Add support for calls to dependent names within templates, e.g., | Douglas Gregor | 2008-12-06 | 1 | -2/+3 | 
| * | Add implicit conversions for Objective-C qualified ids, e.g., | Douglas Gregor | 2008-11-27 | 1 | -2/+18 | 
| * | Cleanup formatting | Douglas Gregor | 2008-11-27 | 1 | -4/+8 | 
| * | Support block pointer conversions in C++. I'm storing the test case locally u... | Douglas Gregor | 2008-11-27 | 1 | -0/+15 | 
| * | Implement implicit conversions for Objective-C specific types, e.g., | Douglas Gregor | 2008-11-26 | 1 | -46/+103 | 
| * | Tweak the new ResolveOverloadedCallFn to just return a FunctionDecl. It makes... | Douglas Gregor | 2008-11-26 | 1 | -13/+9 | 
| * | Move the overloading logic of Sema::ActOnCallExpr to a separate function | Douglas Gregor | 2008-11-26 | 1 | -0/+46 | 
| * | Change a whole lot of diagnostics to take QualType's directly | Chris Lattner | 2008-11-24 | 1 | -10/+7 | 
| * | Rename NamedDecl::getName() to getNameAsString().  Replace a bunch of | Chris Lattner | 2008-11-24 | 1 | -11/+11 | 
| * | Implement a %plural modifier for complex plural forms in diagnostics. Use it ... | Sebastian Redl | 2008-11-22 | 1 | -11/+7 | 
| * | Fix overloading of non-static member functions that differ in their cv-qualif... | Douglas Gregor | 2008-11-21 | 1 | -1/+1 | 
| * | Cleanup memory management in overloading of operator->, slightly | Douglas Gregor | 2008-11-21 | 1 | -8/+9 | 
| * | Don't print canonical types in overloading-related diagnostics | Douglas Gregor | 2008-11-21 | 1 | -5/+25 | 
| * | Add support for overloaded operator-> when used in a member access | Douglas Gregor | 2008-11-20 | 1 | -0/+80 | 
| * | Fix strange quote characters | Douglas Gregor | 2008-11-20 | 1 | -4/+4 | 
| * | Implement the rest of C++ [over.call.object], which permits the object | Douglas Gregor | 2008-11-19 | 1 | -8/+153 | 
| * | Support for calling overloaded function call operators (operator()) | Douglas Gregor | 2008-11-19 | 1 | -0/+150 | 
| * | Added operator overloading for unary operators, post-increment, and | Douglas Gregor | 2008-11-19 | 1 | -33/+209 | 
| * | Switch several more Sema Diag methods over.  This simplifies the | Chris Lattner | 2008-11-19 | 1 | -5/+5 | 
| * | Built-in equality and relational operators have return type "bool" in C++, | Douglas Gregor | 2008-11-19 | 1 | -12/+50 | 
| * | Partial expansion of C++ operator overloading (for binary operators) | Douglas Gregor | 2008-11-18 | 1 | -13/+272 | 
| * | start converting Sema over to using its canonical Diag method. | Chris Lattner | 2008-11-18 | 1 | -4/+3 | 
| * | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor | 2008-11-17 | 1 | -1/+1 | 
| * | Some cleanup for the implementation of built-in operator | Douglas Gregor | 2008-11-13 | 1 | -7/+45 | 
| * | Implement support for operator overloading using candidate operator | Douglas Gregor | 2008-11-12 | 1 | -4/+581 | 
| * | Basic support for taking the address of an overloaded function | Douglas Gregor | 2008-11-10 | 1 | -3/+112 | 
| * | Remove an out-of-date FIXME | Douglas Gregor | 2008-11-10 | 1 | -1/+0 | 
| * | Initial, partially-baked support for implicit user-defined conversions by con... | Douglas Gregor | 2008-11-07 | 1 | -3/+135 | 
| * | Some cleanup of the cast checkers. Don't canonicalize types when not needed. ... | Sebastian Redl | 2008-11-04 | 1 | -0/+1 | 
| * | Implicit support for direct initialization of objects of class type, e.g., | Douglas Gregor | 2008-11-03 | 1 | -2/+3 | 
| * | Standard conversion sequences now have a CopyConstructor field, to | Douglas Gregor | 2008-11-03 | 1 | -30/+61 | 
| * | Add implicitly-declared default and copy constructors to C++ classes, | Douglas Gregor | 2008-11-03 | 1 | -15/+25 | 
| * | Implement basic support for converting constructors in user-defined | Douglas Gregor | 2008-10-31 | 1 | -32/+160 | 
| * | Implement semantic checking of static_cast and dynamic_cast. | Sebastian Redl | 2008-10-31 | 1 | -13/+25 | 
| * | Implement overloading rules for reference binding | Douglas Gregor | 2008-10-29 | 1 | -15/+101 | 
| * | Tweak Sema::CheckReferenceInit so that it (optionally) computes an | Douglas Gregor | 2008-10-29 | 1 | -5/+5 | 
| * | Implement initialization of a reference (C++ [dcl.init.ref]) as part | Douglas Gregor | 2008-10-29 | 1 | -33/+82 | 
| * | Some cleanups for the ambiguous derived-to-base conversion checks | Douglas Gregor | 2008-10-24 | 1 | -3/+3 | 
| * | First non-embarrassing cut at checking for ambiguous derived-to-base | Douglas Gregor | 2008-10-24 | 1 | -1/+30 | 
| * | Add support for conversions from a pointer-to-derived to a | Douglas Gregor | 2008-10-23 | 1 | -7/+138 | 
| * | Add representation of base classes in the AST, and verify that we | Douglas Gregor | 2008-10-22 | 1 | -2/+2 | 
| * | QualType::isMoreQualifiedThan and isAtLeastAsQualifiedAs assert that we | Douglas Gregor | 2008-10-22 | 1 | -0/+1 | 
| * | Implement ranking of standard conversion sequences by their qualification | Douglas Gregor | 2008-10-22 | 1 | -36/+116 | 
| * | Fix a thinko in the qualification-conversion check when the qualificaitons ar... | Douglas Gregor | 2008-10-22 | 1 | -1/+1 | 
| * | Initial step toward supporting qualification conversions (C++ 4.4). | Douglas Gregor | 2008-10-21 | 1 | -4/+95 | 
| * | Preliminary support for function overloading | Douglas Gregor | 2008-10-21 | 1 | -0/+903 |