Age | Commit message (Expand) | Author |
2009-04-12 | Parse deleted member functions. Parsing member declarations goes through a di... | Sebastian Redl |
2009-04-09 | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor |
2009-03-28 | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner |
2009-03-24 | Fix a few isObjectTypes that really need to be isIncompleteOrObject | Douglas Gregor |
2009-03-24 | Make sure to use RequireCompleteType rather than testing for | Douglas Gregor |
2009-03-24 | More work on diagnosing abstract classes. We can now handle cases like | Anders Carlsson |
2009-03-23 | More improvements to abstract type checking. Handle arrays correctly, and mak... | Anders Carlsson |
2009-03-23 | It's an error to try to allocate an abstract object using new. | Anders Carlsson |
2009-03-16 | Almost complete implementation of rvalue references. One bug, and a few uncle... | Sebastian Redl |
2009-03-15 | Convert a bunch of actions to smart pointers, and also bring PrintParserCallb... | Sebastian Redl |
2009-03-13 | Implement template instantiation for several more kinds of expressions: | Douglas Gregor |
2009-03-13 | Refactor the way we handle operator overloading and template | Douglas Gregor |
2009-03-09 | Rename DiagnoseIncompleteType to RequireCompleteType, and update the document... | Douglas Gregor |
2009-02-28 | Eliminate CXXRecordType | Douglas Gregor |
2009-02-26 | Make more AST nodes and semantic checkers dependent-expression-aware. | Sebastian Redl |
2009-02-25 | C99 DR #316 implies that the function parameter types that are known | Douglas Gregor |
2009-02-18 | Downgrade complaints about calling unavailable functions to a warning | Douglas Gregor |
2009-02-17 | remove "; candidates are/is:" from various ambiguity diagnostics. | Chris Lattner |
2009-02-12 | Introduce _Complex conversions into the function overloading | Douglas Gregor |
2009-02-11 | Initial implementation of function overloading in C. | Douglas Gregor |
2009-02-09 | Update new expression to make use of Declarator::getSourceRange(). | Sebastian Redl |
2009-02-07 | Move CheckPointerToMemberOperands to SemaExprCXX.cpp | Sebastian Redl |
2009-02-07 | Overhaul of Stmt allocation: | Ted Kremenek |
2009-02-04 | Fix our semantic analysis of | Douglas Gregor |
2009-02-03 | Allow taking the address of data members, resulting in a member pointer. | Sebastian Redl |
2009-01-30 | Eliminated LookupCriteria, whose creation was causing a bottleneck for | Douglas Gregor |
2009-01-29 | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner |
2009-01-29 | Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupD... | Steve Naroff |
2009-01-28 | Remove 'NamespaceNameOnly' argument to Sema::LookupDecl(). It is unused. | Steve Naroff |
2009-01-27 | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner |
2009-01-25 | Implement implicit conversions for pointers-to-member. | Sebastian Redl |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor |
2009-01-19 | Centralize error reporting of improper uses of incomplete types in the | Douglas Gregor |
2009-01-18 | Convert a few expression actions to smart pointers. | Sebastian Redl |
2009-01-16 | Fix <rdar://problem/6502934>. We were creating an ImplicitCastExpr | Douglas Gregor |
2009-01-16 | Part one of handling C++ functional casts. This handles semantic | Douglas Gregor |
2009-01-14 | Refactor name lookup. | Douglas Gregor |
2009-01-14 | Introduce support for C++0x explicit conversion operators (N2437) | Douglas Gregor |
2009-01-14 | FunctionDecl::setParams() now uses the allocator associated with ASTContext t... | Ted Kremenek |
2009-01-12 | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor |
2009-01-08 | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff |
2009-01-05 | PODness and Type Traits | Sebastian Redl |
2008-12-23 | Fix misguided type selection | Douglas Gregor |
2008-12-23 | Don't push OverloadedFunctionDecls onto the chain of declarations | Douglas Gregor |
2008-12-23 | Don't explicitly represent OverloadedFunctionDecls within | Douglas Gregor |
2008-12-19 | Allow downcasts of pointers to Objective-C interfaces, with a | Douglas Gregor |
2008-12-13 | Some utilities for using the smart pointers in Actions, especially Sema. Conv... | Sebastian Redl |
2008-12-11 | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor |
2008-12-10 | Added a warning when referencing an if's condition variable in the | Douglas Gregor |
2008-12-05 | Introduce basic support for dependent types, type-dependent | Douglas Gregor |