Age | Commit message (Expand) | Author |
2010-04-08 | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin |
2010-03-30 | the big refactoring bits of PR3782. | Rafael Espindola |
2010-03-24 | When performing name lookup for the allocation or deallocation | Douglas Gregor |
2010-03-18 | When elevating access along an inheritance path, initialize the computed | John McCall |
2010-03-15 | During C++ name lookup, use DeclContext::Equals() rather than | Douglas Gregor |
2010-03-15 | Implement C++ [temp.local]p8, which specifies that a template | Douglas Gregor |
2010-02-21 | Eliminate the default arguments to ASTContext::getFunctionType(), | Douglas Gregor |
2010-02-19 | Implement C++ name lookup for instance variables of Objective-C classes | Douglas Gregor |
2010-02-12 | In C++, allow builtins to be referred to via qualified name lookup, e.g., | Douglas Gregor |
2010-02-10 | Improve access control diagnostics. Perform access control on member-pointer | John McCall |
2010-02-08 | Thread a source location into the template-argument deduction routines. There | John McCall |
2010-02-05 | Teach C++ name lookup that it's okay to look in a scope without a | Douglas Gregor |
2010-02-04 | Fix a crash with ill-formed code within a method in an ill-formed | Douglas Gregor |
2010-02-04 | Extract a common structure for holding information about the definition | John McCall |
2010-02-02 | Add a stop gap to Sema::CorrectTypo() to correct only up to 20 typos. | Ted Kremenek |
2010-01-31 | Return early, reduce indentation, and simplify line breaks. No functionality | Chandler Carruth |
2010-01-26 | Handle redeclarations found by ADL deterministically and reasonably. | John McCall |
2010-01-26 | Allow ADL to find functions imported by using decls. Leave wordy comment | John McCall |
2010-01-26 | Preserve access bits through overload resolution much better. Some | John McCall |
2010-01-23 | Implement elementary access control. | John McCall |
2010-01-20 | First pass at collecting access-specifier information along inheritance paths. | John McCall |
2010-01-20 | Give UnresolvedSet the ability to store access specifiers for each declaration. | John McCall |
2010-01-15 | Make LookupResult::resolveKind() robust against NotFoundInCurrentInstantiation. | John McCall |
2010-01-15 | When performing qualified name lookup into the current instantiation, | Douglas Gregor |
2010-01-14 | Switch the remaining code completions over to LookupVisibleDecls, | Douglas Gregor |
2010-01-14 | Move code completion for qualified name lookup (foo::) to | Douglas Gregor |
2010-01-14 | Look through using declarations when determining whether one decl hides another | Douglas Gregor |
2010-01-12 | Name lookup should know better than to look into a class before it's defined | Douglas Gregor |
2010-01-11 | When performing name lookup into a scope, check that its entity is | Douglas Gregor |
2010-01-11 | Implement name lookup for conversion function template specializations | Douglas Gregor |
2010-01-07 | Fix the search for visible declarations within a Scope to ensure that | Douglas Gregor |
2010-01-06 | Per offline discussion with Doug, don't perform typo correction when we have ... | Ted Kremenek |
2010-01-03 | Implement typo correction for a variety of Objective-C-specific | Douglas Gregor |
2010-01-01 | Make sure that the search for visible declarations looks into the semantic pa... | Douglas Gregor |
2009-12-31 | Typo correction for member access into classes/structs/unions, e.g., | Douglas Gregor |
2009-12-31 | Implement typo correction for id-expressions, e.g., | Douglas Gregor |
2009-12-30 | Typo correction for type names when they appear in declarations, e.g., given | Douglas Gregor |
2009-12-29 | Handle using declarations in overloaded and template functions during ADL and | Chandler Carruth |
2009-12-18 | Look through using decls when checking whether a name is an acceptable | John McCall |
2009-12-18 | Pull Sema::isAcceptableLookupResult into SemaLookup. Extract the criteria into | John McCall |
2009-12-12 | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin |
2009-12-11 | Patch to fix a crash trying to access a category name in | Fariborz Jahanian |
2009-12-10 | Implement redeclaration checking and hiding semantics for using declarations.... | John McCall |
2009-12-08 | When performing unqualified name lookup in C++, don't look directly | Douglas Gregor |
2009-12-03 | Stop stripping UnresolvedUsingDecls out of LookupResults that have other | John McCall |
2009-12-02 | Rip out the last remaining implicit use of OverloadedFunctionDecl in Sema: | John McCall |
2009-11-24 | Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and | John McCall |
2009-11-22 | Consider a FunctionTemplate to be an overload all on its lonesome. Track | John McCall |
2009-11-21 | "Incremental" progress on using expressions, by which I mean totally ripping | John McCall |
2009-11-18 | Overhaul previous-declaration and overload checking to work on lookup results | John McCall |