Age | Commit message (Expand) | Author |
2009-09-15 | When printing an overload candidate that is a function template specialization, | Douglas Gregor |
2009-09-15 | Issue good diagnostics when initialization failes due to | Fariborz Jahanian |
2009-09-15 | Issue a good diagnostics when attempt to select | Fariborz Jahanian |
2009-09-14 | Implement partial ordering of function templates when calling a | Douglas Gregor |
2009-09-14 | Test function template partial ordering when resolving the address of | Douglas Gregor |
2009-09-14 | Used visible conversion function api to do overload | Fariborz Jahanian |
2009-09-14 | Implement partial ordering of function template specializations | Douglas Gregor |
2009-09-12 | Use the correct CastKind for derived-to-base pointer conversions. | Anders Carlsson |
2009-09-11 | Undid my yesterday patch which is not needed with an upcoming patch. | Fariborz Jahanian |
2009-09-10 | Look for overloaded arrow operators in base classes. | Anders Carlsson |
2009-09-10 | Patch to collect conversion methods in base(s) and derived | Fariborz Jahanian |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-01 | Preliminary AST representation and semantic analysis for | Douglas Gregor |
2009-08-28 | Fix this for real. | Anders Carlsson |
2009-08-28 | When doing overload resolution, expressions that are value dependent but not ... | Anders Carlsson |
2009-08-28 | Pass InOverloadResolution all the way down to IsPointerConversion. | Anders Carlsson |
2009-08-27 | When looking for overloaded member operators, make sure to instantiate | Douglas Gregor |
2009-08-27 | Add an InOverloadResolution flag to TryCopyInitialization. | Anders Carlsson |
2009-08-27 | Remove more default arguments. | Anders Carlsson |
2009-08-27 | Remove default arguments from TryImplicitConversion and fix a bug found in th... | Anders Carlsson |
2009-08-27 | Remove default argument from TryCopyInitialization. | Anders Carlsson |
2009-08-27 | Revert the flags change for now, I have a better idea for this. | Anders Carlsson |
2009-08-27 | Add a OverloadResolutionFlags and start converting some of the overload metho... | Anders Carlsson |
2009-08-26 | Bye-bye old RequireCompleteType. | Anders Carlsson |
2009-08-26 | Fix for overloaded binary operators whose operands need implicit | Douglas Gregor |
2009-08-24 | Try to complete a type before looking for conversion functions within | Douglas Gregor |
2009-08-24 | Refactor the template-instantiation logic for expressions into a | Douglas Gregor |
2009-08-24 | Fix build of clang with gcc-4.4: #include <cstdio> was missing. | Torok Edwin |
2009-08-22 | Add CK_NullToMemberPointer and CK_BaseToDerivedMemberPointer cast kinds. Make... | Anders Carlsson |
2009-08-21 | Implement conversion function templates, along with the ability to use | Douglas Gregor |
2009-08-21 | Introduce support for constructor templates, which can now be declared | Douglas Gregor |
2009-08-21 | gcc told me to add these. | Daniel Dunbar |
2009-08-21 | Implement support for calling member function templates, which involves: | Douglas Gregor |
2009-08-19 | Make integer promotions work correctly on PIC16 and other platforms | Eli Friedman |
2009-08-16 | Call MaybeBindToTemporary for overloaded binary and unary operators. | Anders Carlsson |
2009-08-16 | Call MaybeBindToTemporary when constructing functino call operator calls. | Anders Carlsson |
2009-08-16 | Add MaybeBindToTemporary calls for member call expressions. | Anders Carlsson |
2009-08-16 | Move builtin call checking out into a separate function, make CheckFunctionCa... | Anders Carlsson |
2009-08-14 | Make the CXXDefaultArgExpr constructor protected and add a static Create func... | Anders Carlsson |
2009-08-07 | Use the correct cast kind as suggested by Doug. | Anders Carlsson |
2009-08-06 | After reporting ill-formed copy constructor(12.8.p3) | Fariborz Jahanian |
2009-08-06 | Support nested-name-specifiers for C++ member access expressions, e.g., | Douglas Gregor |
2009-08-05 | Get rid of "smart" quotes. Per report on cfe-dev. | Eli Friedman |
2009-08-04 | Canonicalize else. | Mike Stump |
2009-08-02 | Produce a warning that partial ordering of function templates is not yet supp... | Douglas Gregor |
2009-07-31 | Add CK_DerivedToBase and use it PerformObjectMemberConversion. | Anders Carlsson |
2009-07-31 | Add a CastKind enum to CastExpr. Right now it's not used for much but it will... | Anders Carlsson |
2009-07-29 | Change uses of: | Ted Kremenek |
2009-07-25 | Implement C++ semantics for C-style and functional-style casts. This regresse... | Sebastian Redl |
2009-07-23 | Remove a bunch of FIXME's related to ObjC type checking. | Steve Naroff |