| Commit message (Expand) | Author | Age | Files | Lines |
* | That's not the right direction to compute notional accessibility in at all. | John McCall | 2010-08-28 | 1 | -21/+28 |
* | Fix build. Bad me, adding last-minute assertions. | John McCall | 2010-08-28 | 1 | -1/+1 |
* | When checking access control for an instance member access on | John McCall | 2010-08-28 | 1 | -8/+130 |
* | Propagate whether an id-expression is the immediate argument of | John McCall | 2010-08-27 | 1 | -1/+1 |
* | Restore r112114 now that SmallVector<...,0> is safe. | John McCall | 2010-08-26 | 1 | -4/+6 |
* | Revert r112114, "Pull DelayedDiagnostic and AccessedEntity out into their own | Daniel Dunbar | 2010-08-26 | 1 | -6/+4 |
* | Pull DelayedDiagnostic and AccessedEntity out into their own header. | John McCall | 2010-08-25 | 1 | -4/+6 |
* | Split out a header to hold APIs meant for the Sema implementation from Sema.h. | John McCall | 2010-08-25 | 1 | -1/+1 |
* | Revert r111609, which is failing its new test. | Douglas Gregor | 2010-08-20 | 1 | -3/+0 |
* | Detect efforts to declare a template member friend and explicitly ignore them. | John McCall | 2010-08-20 | 1 | -0/+3 |
* | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -3/+3 |
* | Partial fix for PR7267 based on comments by John McCall on an earlier patch. | Chandler Carruth | 2010-06-28 | 1 | -0/+15 |
* | PR7245: Make binding a reference to a temporary without a usable copy | Jeffrey Yasskin | 2010-06-07 | 1 | -4/+7 |
* | When we complain about a member being inaccessible due to a constraint | Douglas Gregor | 2010-05-28 | 1 | -0/+4 |
* | An access is permitted if the current template instantiates to the appropriate | John McCall | 2010-05-04 | 1 | -3/+29 |
* | Add another 'catch all' access diagnostic. | Anders Carlsson | 2010-04-23 | 1 | -2/+3 |
* | Use the naming class from the overloaded lookup when access-checking an | John McCall | 2010-04-22 | 1 | -9/+1 |
* | Re-land the patch that merges two diagnostics into one now that it passes sel... | Anders Carlsson | 2010-04-22 | 1 | -7/+6 |
* | Revert "Unify two diagnostics into one.", it breaks with an assertion failure... | Daniel Dunbar | 2010-04-22 | 1 | -6/+7 |
* | Unify two diagnostics into one. | Anders Carlsson | 2010-04-22 | 1 | -7/+6 |
* | Diagnose access to fields with private constructors. | Anders Carlsson | 2010-04-21 | 1 | -0/+7 |
* | Keep tack of whether a base in an InitializedEntity is an inherited virtual b... | Anders Carlsson | 2010-04-21 | 1 | -2/+6 |
* | Pass the InitializedEntity to Sema::CheckConstructorAccess and use it to repo... | Anders Carlsson | 2010-04-21 | 1 | -5/+16 |
* | Fix the access checking of function and function template argument types, | Chandler Carruth | 2010-04-18 | 1 | -2/+9 |
* | Check access for the implicit calls to destructors that occur when we | John McCall | 2010-04-07 | 1 | -1/+1 |
* | Implement the protected access restriction ([class.protected]), which requires | John McCall | 2010-04-06 | 1 | -210/+421 |
* | Correct the calculation of access to more closely model the wording in | John McCall | 2010-04-02 | 1 | -123/+206 |
* | Fix an oversight with access control for address-of-function. | John McCall | 2010-03-30 | 1 | -0/+1 |
* | Propagate the "found declaration" (i.e. the using declaration instead of | John McCall | 2010-03-30 | 1 | -0/+25 |
* | Optimize PartialDiagnostic's memory-allocation behavior by placing a | Douglas Gregor | 2010-03-29 | 1 | -11/+16 |
* | Accumulate all functions and classes that the effective context is | John McCall | 2010-03-27 | 1 | -35/+51 |
* | Reapply r99596 with a fix: link an instantiated friend function to its | John McCall | 2010-03-26 | 1 | -1/+1 |
* | Apparently that didn't work. Reverting for now. | John McCall | 2010-03-26 | 1 | -1/+1 |
* | Properly instantiate and link in friend function templates. | John McCall | 2010-03-26 | 1 | -1/+1 |
* | Fix a very minor oversight in privileges-elevation: we were only considering | John McCall | 2010-03-25 | 1 | -1/+1 |
* | Preserve type-source information in friend declarations. | John McCall | 2010-03-25 | 1 | -2/+2 |
* | Properly instantiate friend class template declarations and link them into | John McCall | 2010-03-25 | 1 | -3/+7 |
* | Revert 99477 since it appears to be breaking the clang-x86_64-darwin10-fnt | Bob Wilson | 2010-03-25 | 1 | -7/+3 |
* | Properly instantiate and link in friend-class-template declarations. | John McCall | 2010-03-25 | 1 | -3/+7 |
* | Walk out of enums when determining effective context. | John McCall | 2010-03-24 | 1 | -1/+11 |
* | Support friend function specializations. | John McCall | 2010-03-24 | 1 | -8/+10 |
* | Implement a framework for the delay of arbitrary diagnostics within | John McCall | 2010-03-24 | 1 | -61/+287 |
* | Remember the "found declaration" for an overload candidate, which is the | John McCall | 2010-03-19 | 1 | -24/+20 |
* | When elevating access along an inheritance path, initialize the computed | John McCall | 2010-03-18 | 1 | -13/+30 |
* | from code inspection, we were treating placement news with one argument as | John McCall | 2010-03-18 | 1 | -0/+18 |
* | Implement non-dependent friend functions and classes. | John McCall | 2010-03-17 | 1 | -18/+94 |
* | Grant nested classes the access privileges of their enclosing classes. | John McCall | 2010-03-17 | 1 | -48/+51 |
* | Access control for implicit calls to copy assignment operators and copy | John McCall | 2010-03-16 | 1 | -0/+17 |
* | Perform access control for the implicit base and member destructor calls | John McCall | 2010-03-16 | 1 | -81/+80 |
* | Implement basic support for friend types and functions in non-dependent | John McCall | 2010-03-12 | 1 | -2/+27 |