aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaAccess.cpp
AgeCommit message (Expand)Author
2013-04-29Implement DR580: access checks for template parameters of a class template areRichard Smith
2013-02-27Don't crash when diagnosing path-constrained protectedJohn McCall
2013-02-22Only suppress instance context if a member is actuallyJohn McCall
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru
2012-08-24When computing the effective context for access control,John McCall
2012-08-24Fix a few -Wdocumentation warnings.Dmitri Gribenko
2012-08-10Check access to friend declarations. There's a number of differentJohn McCall
2012-07-04Drop the ASTContext.h include from Stmt.h and fix up transitive users.Benjamin Kramer
2012-06-22Diagnostics cleanup: Fixing \params to match the code.James Dennett
2012-05-07Change how we suppress access control in explicit instantiationsJohn McCall
2012-05-07There is no reason for these methods to be out-of-line.John McCall
2012-04-19Fix a comment.Francois Pichet
2012-04-18As per John McCall comment:Francois Pichet
2012-04-17Emulate a MSVC bug where the creation of pointer-to-member to protected membe...Francois Pichet
2012-04-09Fix the access check performed as part of the determination of whetherJohn McCall
2012-04-07Fix several problems with protected access control:John McCall
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-02-15Introduce a new initialization entity for lambda captures, andDouglas Gregor
2012-01-20Remove unused variables.Benjamin Kramer
2012-01-17Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie
2012-01-14De-virtualize getPreviousDecl() and getMostRecentDecl() when we knowDouglas Gregor
2011-12-29Change the diagnostics which said 'accepted as an extension' to instead sayRichard Smith
2011-12-15Replace all comparisons between ObjCInterfaceDecl pointers with callsDouglas Gregor
2011-11-14When we're checking access in a dependent context, don't try to lookDouglas Gregor
2011-11-03Extend IsSimplyAccessible to check for Objective-C instance variableDouglas Gregor
2011-11-03Class can't be null in this contextDouglas Gregor
2011-11-03Refactor Sema::IsSimplyAccessible slightly, to work on a DeclContext rather t...Douglas Gregor
2011-10-10Don't crash in Sema::IsSimplyAccessible if the declaration is not a C++ class...Douglas Gregor
2011-10-09The effective context of a friend function is its lexicalDouglas Gregor
2011-10-06Added CXAvailability_NotAccessible to indicate that a declaration is availabl...Erik Verbruggen
2011-09-21Enforce access control for conversion operators used in contextualJohn McCall
2011-09-20Move Microsoft access specifier bug emulation from -fms-extensions to -fm-com...Francois Pichet
2011-09-19Removed an unused field and its accessors methods.Erik Verbruggen
2011-09-17Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t...Francois Pichet
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-06-10Implement caching of default constructors on the resolution table. ThisSean Hunt
2011-05-25Update our diagnostics to properly account for move operations.Sean Hunt
2011-05-23Emulate a MSVC bug where if during an using declaration name lookup, the decl...Francois Pichet
2011-05-19Undo enough of r131143 to make private copy ctor diags say "copy constructor"...Matt Beaumont-Gay
2011-05-12HrmSean Hunt
2011-05-10Re-do R131114 without breaking code.Sean Hunt
2011-05-05Implement support for C++0x alias templates.Richard Smith
2011-04-15Support for C++11 (non-template) alias declarations.Richard Smith
2011-02-15Handle delayed access in local declarations. PR9229.John McCall
2011-02-14When parsing an out-of-line member function declaration, we must delayJohn McCall
2010-11-28Minor whitespace and comment fixes. No functionality change.Nico Weber
2010-10-20Access control polish: drop the note on the original declaration andJohn McCall
2010-10-16White-listing templated-scope friend decls is a good idea, but doing itJohn McCall