| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | If name lookup finds different type declarations in different scopes | Douglas Gregor | 2010-08-11 | 1 | -21/+39 |
* | Introduce -f{no-}spell-checking options to enable/disable | Douglas Gregor | 2010-07-09 | 1 | -1/+1 |
* | Lazily declare default constructors. We now delay the construction of | Douglas Gregor | 2010-07-03 | 1 | -6/+18 |
* | Lazily declare implicit copy constructors. | Douglas Gregor | 2010-07-02 | 1 | -8/+22 |
* | Introduce a new routine, LookupConstructors(), and use it for all | Douglas Gregor | 2010-07-02 | 1 | -0/+10 |
* | Lazily declare copy-assignment operators. | Douglas Gregor | 2010-07-02 | 1 | -14/+66 |
* | Lazily declare the implicitly-declared destructor in a C++ class. | Douglas Gregor | 2010-07-02 | 1 | -0/+49 |
* | Add a new routine Sema::LookupDestructor and make all destructor-lookup calls... | Douglas Gregor | 2010-07-01 | 1 | -0/+10 |
* | Be a bit more careful with undefined CXXRecordDecls. Fixes | Douglas Gregor | 2010-07-01 | 1 | -1/+1 |
* | A more minimal fix for PR6762. | John McCall | 2010-05-28 | 1 | -55/+48 |
* | Roll back r104941. | John McCall | 2010-05-28 | 1 | -4/+0 |
* | Add a new attribute on records, __attribute__((adl_invisible)), and define | John McCall | 2010-05-28 | 1 | -0/+4 |
* | Optimize and complete associated-class-and-namespace collection from | John McCall | 2010-05-28 | 1 | -85/+115 |
* | Reinstate r104117, Chandler Carruth's change that "[provides] a naming | Douglas Gregor | 2010-05-20 | 1 | -1/+5 |
* | Remove accidental commit | Douglas Gregor | 2010-05-20 | 1 | -8/+2 |
* | Various small fixes for construction/destruction of Objective-C++ | Douglas Gregor | 2010-05-20 | 1 | -2/+8 |
* | Revert r104117, "Provide a naming class for UnresolvedLookupExprs, even when | Daniel Dunbar | 2010-05-19 | 1 | -4/+1 |
* | Provide a naming class for UnresolvedLookupExprs, even when occuring on | Chandler Carruth | 2010-05-19 | 1 | -1/+4 |
* | Give a slight edge to the context-sensitive keyword 'super' over | Douglas Gregor | 2010-05-18 | 1 | -1/+20 |
* | Tweak typo-correction logic a bit regarding "super", so that we | Douglas Gregor | 2010-05-18 | 1 | -0/+6 |
* | Make sure to search semantic scopes and appropriate template-parameter | Douglas Gregor | 2010-05-14 | 1 | -16/+48 |
* | It turns out that basically every caller to RequireCompleteDeclContext | John McCall | 2010-05-01 | 1 | -1/+1 |
* | Fix ADL for types declared in transparent decls, from Alp Toker! | Douglas Gregor | 2010-04-30 | 1 | -18/+16 |
* | When name lookup finds a single declaration that was imported via a | Douglas Gregor | 2010-04-25 | 1 | -2/+3 |
* | When performing name lookup for an operator name, be sure to look | Douglas Gregor | 2010-04-25 | 1 | -4/+5 |
* | Recommit r102215, this time being more careful to only set the "principal | John McCall | 2010-04-24 | 1 | -33/+7 |
* | Revert r102215. This causes clang crash while compiling a test case from gdb ... | Devang Patel | 2010-04-24 | 1 | -7/+33 |
* | Transition the last acceptable-result filter kind in LookupResult over to use | John McCall | 2010-04-23 | 1 | -33/+7 |
* | Recommit my change to how C++ does elaborated type lookups, now with | John McCall | 2010-04-23 | 1 | -32/+21 |
* | Revert "C++ doesn't really use "namespaces" for different kinds of names the ... | Daniel Dunbar | 2010-04-23 | 1 | -22/+32 |
* | C++ doesn't really use "namespaces" for different kinds of names the same | John McCall | 2010-04-23 | 1 | -32/+22 |
* | Kill off IDNS_ObjCImplementation and IDNS_ObjCCategoryName; they | Douglas Gregor | 2010-04-22 | 1 | -6/+0 |
* | When searching for code-completion and typo-correction candidates, | Douglas Gregor | 2010-04-19 | 1 | -0/+15 |
* | Feed proper source-location information into Sema::LookupSingleResult, | Douglas Gregor | 2010-04-15 | 1 | -3/+6 |
* | Teach typo correction about various language keywords. We can't | Douglas Gregor | 2010-04-14 | 1 | -27/+267 |
* | Return the corrected DeclarationName from Sema::CorrectTypo rather | Douglas Gregor | 2010-04-14 | 1 | -15/+19 |
* | Make CXXScopeSpec invalid when incomplete, and propagate that into any | Jeffrey Yasskin | 2010-04-08 | 1 | -2/+2 |
* | the big refactoring bits of PR3782. | Rafael Espindola | 2010-03-30 | 1 | -2/+2 |
* | When performing name lookup for the allocation or deallocation | Douglas Gregor | 2010-03-24 | 1 | -0/+17 |
* | When elevating access along an inheritance path, initialize the computed | John McCall | 2010-03-18 | 1 | -1/+1 |
* | During C++ name lookup, use DeclContext::Equals() rather than | Douglas Gregor | 2010-03-15 | 1 | -5/+3 |
* | Implement C++ [temp.local]p8, which specifies that a template | Douglas Gregor | 2010-03-15 | 1 | -10/+93 |
* | Eliminate the default arguments to ASTContext::getFunctionType(), | Douglas Gregor | 2010-02-21 | 1 | -1/+2 |
* | Implement C++ name lookup for instance variables of Objective-C classes | Douglas Gregor | 2010-02-19 | 1 | -7/+30 |
* | In C++, allow builtins to be referred to via qualified name lookup, e.g., | Douglas Gregor | 2010-02-12 | 1 | -29/+48 |
* | Improve access control diagnostics. Perform access control on member-pointer | John McCall | 2010-02-10 | 1 | -1/+1 |
* | Thread a source location into the template-argument deduction routines. There | John McCall | 2010-02-08 | 1 | -1/+1 |
* | Teach C++ name lookup that it's okay to look in a scope without a | Douglas Gregor | 2010-02-05 | 1 | -8/+10 |
* | Fix a crash with ill-formed code within a method in an ill-formed | Douglas Gregor | 2010-02-04 | 1 | -3/+6 |
* | Extract a common structure for holding information about the definition | John McCall | 2010-02-04 | 1 | -0/+9 |