Age | Commit message (Expand) | Author |
2009-11-17 | Require the object type of a member access expression ("." or "->") to | Douglas Gregor |
2009-11-17 | Carry lookup configuration throughout lookup on the LookupResult. Give | John McCall |
2009-11-16 | First part of changes to eliminate problems with cv-qualifiers and | Douglas Gregor |
2009-11-16 | Repair broken FindCompositePointerType. Correct early termination condition. ... | Sebastian Redl |
2009-11-15 | Factor finding a deallocation function for a record type out into a separate ... | Anders Carlsson |
2009-11-15 | If we find a deallocation function in the class scope, but it is a placement ... | Anders Carlsson |
2009-11-14 | - Have TryStaticImplicitCast set the cast kind to NoOp when binding a referen... | Sebastian Redl |
2009-11-14 | Diagnose ambiguity of operator delete and operator delete[]. Sebastian, pleas... | Anders Carlsson |
2009-11-12 | Improve source-location information for implicitly-generated member call expr... | Douglas Gregor |
2009-11-08 | Fix use-after-free bug. | Eli Friedman |
2009-11-06 | When we encounter a derived-to-base conversion when performing an | Douglas Gregor |
2009-11-06 | Minor cleanup of my last patch. | Fariborz Jahanian |
2009-11-06 | This patch implements Sema for clause 13.3.3.1p4. | Fariborz Jahanian |
2009-11-05 | Implement the conditional-operator part of -Wsign-compare. Turn | John McCall |
2009-11-04 | When starting a C++ member access expression, make sure to compute the | Douglas Gregor |
2009-11-03 | Remove previous patch for pr5296 due to further clarification | Fariborz Jahanian |
2009-11-03 | Replace the code that parses member access expressions after "." or | Douglas Gregor |
2009-11-03 | Use ParseUnqualifiedId when parsing id-expressions. This eliminates | Douglas Gregor |
2009-11-01 | Within a template, qualified name lookup can refer to a non-dependent type | Douglas Gregor |
2009-10-29 | Track source information for template arguments and template specialization | John McCall |
2009-10-27 | Generate constructor for value-initialization cases, even if the | Fariborz Jahanian |
2009-10-26 | Add 'fixit' hint on mis-use of pointer-to-member | Fariborz Jahanian |
2009-10-25 | Remove the Skip parameter from GetTypeForDeclarator and dependents. Take the ... | Sebastian Redl |
2009-10-24 | Fix overload resolution when calling a member template or taking the | Douglas Gregor |
2009-10-23 | Diagnose misuse of '.*' and '->*' operators during parse | Fariborz Jahanian |
2009-10-23 | Fixed a code gen bug (by fixing the AST) involving user-defined | Fariborz Jahanian |
2009-10-22 | Refactor our handling of implicit member reference expressions to get most of... | Douglas Gregor |
2009-10-21 | Don't (directly) call RequireCompleteType with an invalid source location. | Douglas Gregor |
2009-10-21 | Change FixOverloadedFunctionReference to return a (possibly new) expression. ... | Anders Carlsson |
2009-10-20 | Remove default argument for ImpCastExprToType. Add appropriate argument | Eli Friedman |
2009-10-19 | Parse a simple-template-id following a '~' when calling a destructor, e.g., | Douglas Gregor |
2009-10-18 | When building a cast argument, make sure to bind the result to a temporary. | Anders Carlsson |
2009-10-17 | When type-checking a C++ "new" expression, don't type-check the actual | Douglas Gregor |
2009-10-17 | Don't add implicit casts of explicit address-taking of overloaded functions. | Sebastian Redl |
2009-10-16 | Implement derived-to-base AST/code gen. There is a | Fariborz Jahanian |
2009-10-13 | The operator loc points to the operator, not the function decl. | Anders Carlsson |
2009-10-13 | Check the return type of binary operators and the arrow operator. | Anders Carlsson |
2009-10-11 | Test exception spec compatibility on return type and parameters. | Sebastian Redl |
2009-10-10 | Implement the core checking for compatible exception specifications in assign... | Sebastian Redl |
2009-10-09 | Refactor the LookupResult API to simplify most common operations. Require us... | John McCall |
2009-10-06 | Refactor the code that walks a C++ inheritance hierarchy, searching | Douglas Gregor |
2009-09-30 | Note location of operators caused the circularity. | Fariborz Jahanian |
2009-09-30 | Spare the processors of those poor wretches who have no choice but to write | John McCall |
2009-09-30 | Detect operator-> chains of arbitrary length. Use a terrible data structure | John McCall |
2009-09-30 | self-referecing operator '->' member function was causing | Fariborz Jahanian |
2009-09-30 | Find operators new/delete in base classes. FIXME -= 2; | Douglas Gregor |
2009-09-29 | The C++ delete expression strips cv-qualifiers from the pointed-to type. My p... | Douglas Gregor |
2009-09-29 | Handle C++ delete expressions when the overloaded delete operator is a | Douglas Gregor |
2009-09-28 | Define and use a helper method to call a type conversion | Fariborz Jahanian |
2009-09-25 | Refixed pr5050 per Anders comment. Test case enhanced | Fariborz Jahanian |