summaryrefslogtreecommitdiffstats
path: root/lib/Sema/SemaAccess.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* The effective context of a friend function is its lexicalDouglas Gregor2011-10-091-1/+5
* Added CXAvailability_NotAccessible to indicate that a declaration is availabl...Erik Verbruggen2011-10-061-0/+21
* Enforce access control for conversion operators used in contextualJohn McCall2011-09-211-2/+1
* Move Microsoft access specifier bug emulation from -fms-extensions to -fm-com...Francois Pichet2011-09-201-1/+1
* Removed an unused field and its accessors methods.Erik Verbruggen2011-09-191-6/+3
* Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t...Francois Pichet2011-09-171-1/+1
* remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner2011-07-231-8/+8
* Implement caching of default constructors on the resolution table. ThisSean Hunt2011-06-101-10/+28
* Update our diagnostics to properly account for move operations.Sean Hunt2011-05-251-4/+2
* Emulate a MSVC bug where if during an using declaration name lookup, the decl...Francois Pichet2011-05-231-4/+48
* Undo enough of r131143 to make private copy ctor diags say "copy constructor"...Matt Beaumont-Gay2011-05-191-2/+6
* HrmSean Hunt2011-05-121-3/+5
* Re-do R131114 without breaking code.Sean Hunt2011-05-101-6/+4
* Implement support for C++0x alias templates.Richard Smith2011-05-051-2/+2
* Support for C++11 (non-template) alias declarations.Richard Smith2011-04-151-8/+8
* Handle delayed access in local declarations. PR9229.John McCall2011-02-151-10/+14
* When parsing an out-of-line member function declaration, we must delayJohn McCall2011-02-141-7/+13
* Minor whitespace and comment fixes. No functionality change.Nico Weber2010-11-281-1/+1
* Access control polish: drop the note on the original declaration andJohn McCall2010-10-201-1/+43
* White-listing templated-scope friend decls is a good idea, but doing itJohn McCall2010-10-161-2/+3
* Handle dependent friends more explicitly and deal with the possibilityJohn McCall2010-10-121-0/+4
* Add a quick-and-dirty hack to give a better diagnostic for [class.protected]John McCall2010-09-031-0/+55
* That's not the right direction to compute notional accessibility in at all.John McCall2010-08-281-21/+28
* Fix build. Bad me, adding last-minute assertions.John McCall2010-08-281-1/+1
* When checking access control for an instance member access onJohn McCall2010-08-281-8/+130
* Propagate whether an id-expression is the immediate argument ofJohn McCall2010-08-271-1/+1
* Restore r112114 now that SmallVector<...,0> is safe.John McCall2010-08-261-4/+6
* Revert r112114, "Pull DelayedDiagnostic and AccessedEntity out into their ownDaniel Dunbar2010-08-261-6/+4
* Pull DelayedDiagnostic and AccessedEntity out into their own header.John McCall2010-08-251-4/+6
* Split out a header to hold APIs meant for the Sema implementation from Sema.h.John McCall2010-08-251-1/+1
* Revert r111609, which is failing its new test.Douglas Gregor2010-08-201-3/+0
* Detect efforts to declare a template member friend and explicitly ignore them.John McCall2010-08-201-0/+3
* Move Sema's headers into include/clang/Sema, renaming a few along the way.Douglas Gregor2010-08-121-3/+3
* Partial fix for PR7267 based on comments by John McCall on an earlier patch.Chandler Carruth2010-06-281-0/+15
* PR7245: Make binding a reference to a temporary without a usable copyJeffrey Yasskin2010-06-071-4/+7
* When we complain about a member being inaccessible due to a constraintDouglas Gregor2010-05-281-0/+4
* An access is permitted if the current template instantiates to the appropriateJohn McCall2010-05-041-3/+29
* Add another 'catch all' access diagnostic.Anders Carlsson2010-04-231-2/+3
* Use the naming class from the overloaded lookup when access-checking anJohn McCall2010-04-221-9/+1
* Re-land the patch that merges two diagnostics into one now that it passes sel...Anders Carlsson2010-04-221-7/+6
* Revert "Unify two diagnostics into one.", it breaks with an assertion failure...Daniel Dunbar2010-04-221-6/+7
* Unify two diagnostics into one.Anders Carlsson2010-04-221-7/+6
* Diagnose access to fields with private constructors.Anders Carlsson2010-04-211-0/+7
* Keep tack of whether a base in an InitializedEntity is an inherited virtual b...Anders Carlsson2010-04-211-2/+6
* Pass the InitializedEntity to Sema::CheckConstructorAccess and use it to repo...Anders Carlsson2010-04-211-5/+16
* Fix the access checking of function and function template argument types,Chandler Carruth2010-04-181-2/+9
* Check access for the implicit calls to destructors that occur when weJohn McCall2010-04-071-1/+1
* Implement the protected access restriction ([class.protected]), which requiresJohn McCall2010-04-061-210/+421
* Correct the calculation of access to more closely model the wording inJohn McCall2010-04-021-123/+206
* Fix an oversight with access control for address-of-function.John McCall2010-03-301-0/+1