Age | Commit message (Expand) | Author |
2009-01-08 | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff |
2009-01-07 | Initial implementation of anonymous unions (and, as a GNU extension, | Douglas Gregor |
2008-12-23 | Don't push OverloadedFunctionDecls onto the chain of declarations | Douglas Gregor |
2008-12-23 | Add some block-pointer conversions in C++ | Douglas Gregor |
2008-12-23 | Don't explicitly represent OverloadedFunctionDecls within | Douglas Gregor |
2008-12-22 | Support conversion from a null pointer constant o any Objective-C object poin... | Douglas Gregor |
2008-12-22 | Add support for calls to overloaded member functions. Things to note: | Douglas Gregor |
2008-12-20 | Add support for member references (E1.E2, E1->E2) with C++ semantics, | Douglas Gregor |
2008-12-19 | Support more implicit conversions for Objective-C types. Addresses <rdar://pr... | Douglas Gregor |
2008-12-19 | Allow downcasts of pointers to Objective-C interfaces, with a | Douglas Gregor |
2008-12-18 | Add some more implicit conversions for Objective-C++ | Douglas Gregor |
2008-12-15 | Place constructors and destructors into the DeclContext of the class, | Douglas Gregor |
2008-12-12 | In C++, set the type of each of the enumerators in an enumeration to | Douglas Gregor |
2008-12-11 | Address some comments on the name lookup/DeclContext patch from Chris | Douglas Gregor |
2008-12-11 | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor |
2008-12-06 | Add support for calls to dependent names within templates, e.g., | Douglas Gregor |
2008-11-27 | Add implicit conversions for Objective-C qualified ids, e.g., | Douglas Gregor |
2008-11-27 | Cleanup formatting | Douglas Gregor |
2008-11-27 | Support block pointer conversions in C++. I'm storing the test case locally u... | Douglas Gregor |
2008-11-26 | Implement implicit conversions for Objective-C specific types, e.g., | Douglas Gregor |
2008-11-26 | Tweak the new ResolveOverloadedCallFn to just return a FunctionDecl. It makes... | Douglas Gregor |
2008-11-26 | Move the overloading logic of Sema::ActOnCallExpr to a separate function | Douglas Gregor |
2008-11-24 | Change a whole lot of diagnostics to take QualType's directly | Chris Lattner |
2008-11-24 | Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of | Chris Lattner |
2008-11-22 | Implement a %plural modifier for complex plural forms in diagnostics. Use it ... | Sebastian Redl |
2008-11-21 | Fix overloading of non-static member functions that differ in their cv-qualif... | Douglas Gregor |
2008-11-21 | Cleanup memory management in overloading of operator->, slightly | Douglas Gregor |
2008-11-21 | Don't print canonical types in overloading-related diagnostics | Douglas Gregor |
2008-11-20 | Add support for overloaded operator-> when used in a member access | Douglas Gregor |
2008-11-20 | Fix strange quote characters | Douglas Gregor |
2008-11-19 | Implement the rest of C++ [over.call.object], which permits the object | Douglas Gregor |
2008-11-19 | Support for calling overloaded function call operators (operator()) | Douglas Gregor |
2008-11-19 | Added operator overloading for unary operators, post-increment, and | Douglas Gregor |
2008-11-19 | Switch several more Sema Diag methods over. This simplifies the | Chris Lattner |
2008-11-19 | Built-in equality and relational operators have return type "bool" in C++, | Douglas Gregor |
2008-11-18 | Partial expansion of C++ operator overloading (for binary operators) | Douglas Gregor |
2008-11-18 | start converting Sema over to using its canonical Diag method. | Chris Lattner |
2008-11-17 | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor |
2008-11-13 | Some cleanup for the implementation of built-in operator | Douglas Gregor |
2008-11-12 | Implement support for operator overloading using candidate operator | Douglas Gregor |
2008-11-10 | Basic support for taking the address of an overloaded function | Douglas Gregor |
2008-11-10 | Remove an out-of-date FIXME | Douglas Gregor |
2008-11-07 | Initial, partially-baked support for implicit user-defined conversions by con... | Douglas Gregor |
2008-11-04 | Some cleanup of the cast checkers. Don't canonicalize types when not needed. ... | Sebastian Redl |
2008-11-03 | Implicit support for direct initialization of objects of class type, e.g., | Douglas Gregor |
2008-11-03 | Standard conversion sequences now have a CopyConstructor field, to | Douglas Gregor |
2008-11-03 | Add implicitly-declared default and copy constructors to C++ classes, | Douglas Gregor |
2008-10-31 | Implement basic support for converting constructors in user-defined | Douglas Gregor |
2008-10-31 | Implement semantic checking of static_cast and dynamic_cast. | Sebastian Redl |
2008-10-29 | Implement overloading rules for reference binding | Douglas Gregor |