Age | Commit message (Expand) | Author |
2008-11-20 | remove another old-school Diag method. | Chris Lattner |
2008-11-20 | instead of looking up super at startup time, | Chris Lattner |
2008-11-19 | Support for calling overloaded function call operators (operator()) | Douglas Gregor |
2008-11-19 | Support overloading of the subscript operator[], including support for | Douglas Gregor |
2008-11-19 | Added operator overloading for unary operators, post-increment, and | Douglas Gregor |
2008-11-19 | stop calling II::getName() unnecesarily in sema | Chris Lattner |
2008-11-19 | remove one more old-style Diag method. | Chris Lattner |
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-18 | As threatened previously: consolidate name lookup and the creation of | Douglas Gregor |
2008-11-18 | Extend DeclarationName to support C++ overloaded operators, e.g., | Douglas Gregor |
2008-11-18 | minor cleanups and tidying, no functionality change. | Chris Lattner |
2008-11-18 | implement a fixme by making warnings for ++/-- on non-modifiable-lvalues better. | Chris Lattner |
2008-11-18 | factor some code out into a helper function | Chris Lattner |
2008-11-17 | Implement effects of 'mutable', and a few comments from Chris on its parsing. | Sebastian Redl |
2008-11-17 | Implement rdar://6319320: give a good diagnostic for cases where people | Chris Lattner |
2008-11-17 | Fix <rdar://problem/6316324> [sema] spurious warning on comparison of qualifi... | Steve Naroff |
2008-11-14 | Add a new expression node, CXXOperatorCallExpr, which expresses a | 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-11 | Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr... | Sebastian Redl |
2008-11-10 | Basic support for taking the address of an overloaded function | Douglas Gregor |
2008-11-08 | Implement Sema support for C++ nested-name-specifiers. | Argyrios Kyrtzidis |
2008-11-08 | Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse... | Argyrios Kyrtzidis |
2008-11-06 | Initial, rudimentary implementation of operator overloading for binary | Douglas Gregor |
2008-11-05 | Implement C++ copy-initialization for declarations. There is now some | Douglas Gregor |
2008-11-04 | Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'.... | Douglas Gregor |
2008-11-03 | Fix <rdar://problem/6339636> clang ObjC rewriter: Assertion failed: FileID-1 ... | Steve Naroff |
2008-10-29 | Tweak Sema::CheckReferenceInit so that it (optionally) computes an | Douglas Gregor |
2008-10-29 | Implement initialization of a reference (C++ [dcl.init.ref]) as part | Douglas Gregor |
2008-10-28 | Rename ExplicitCCastExpr to CStyleCastExpr | Douglas Gregor |
2008-10-28 | Improve our handling of (C++) references within Clang. Specifically: | Douglas Gregor |
2008-10-27 | Refactor the expression class hierarchy for casts. Most importantly: | Douglas Gregor |
2008-10-27 | Fix <rdar://problem/6315646> clang on xcode: error: invalid operands to binar... | Steve Naroff |
2008-10-26 | Remember whether an initlist had a designator in the AST. | Chris Lattner |
2008-10-26 | pass designators into sema. This completes parser-level designator | Chris Lattner |
2008-10-26 | Don't give a default argument to ASTContext::getFunctionType for the TypeQual... | Argyrios Kyrtzidis |
2008-10-24 | -Add support for cv-qualifiers after function declarators. | Argyrios Kyrtzidis |
2008-10-24 | Semantic analysis for C++ reinterpret_cast and const_cast. Patch by Sebastian... | Douglas Gregor |
2008-10-24 | First non-embarrassing cut at checking for ambiguous derived-to-base | Douglas Gregor |
2008-10-23 | Fix regression in comparison of qualified id; == operator was being | Daniel Dunbar |
2008-10-22 | Fix <rdar://problem/6311947> clang on xcode (regression): error: use of undec... | Steve Naroff |
2008-10-22 | Now that DeclRefExpr accepts a NamedDecl, use a DeclRefExpr for when a CXXFie... | Argyrios Kyrtzidis |
2008-10-22 | Fix <rdar://problem/6257675> error: member reference base type ('NSUserDefaul... | Steve Naroff |
2008-10-22 | Move Sema::GetNonReferenceType to QualType::getNonReferenceType and make it i... | Douglas Gregor |
2008-10-21 | Initial step toward supporting qualification conversions (C++ 4.4). | Douglas Gregor |
2008-10-21 | Fix use of dyn_cast. | Daniel Dunbar |
2008-10-21 | Preliminary support for function overloading | Douglas Gregor |