summaryrefslogtreecommitdiff
path: root/lib/Sema/SemaAccess.cpp
Commit message (Expand)AuthorAge
* Consolidate some note diagnosticsAlp Toker2014-05-28
* [C++11] Use 'nullptr'. Sema edition.Craig Topper2014-05-26
* [C++11] Replacing CXXRecordDecl iterators friend_begin() and friend_end() wit...Aaron Ballman2014-03-13
* [C++11] Replacing CXXRecordDecl iterators bases_begin() and bases_end() with ...Aaron Ballman2014-03-13
* [C++11] Replacing DeclBase iterators decls_begin() and decls_end() with itera...Aaron Ballman2014-03-07
* Move the -fms-compatibility using decl check after real access checkingReid Kleckner2014-02-08
* Rename getResultType() on function and method declarations to getReturnType()Alp Toker2014-01-25
* Change a dyn_cast from r199794 to a straight castAlp Toker2014-01-22
* Introduce and use Decl::getAsFunction() to simplify templated function checksAlp Toker2014-01-22
* Rename FunctionProtoType accessors from 'arguments' to 'parameters'Alp Toker2014-01-20
* Rename language option MicrosoftMode to MSVCCompatAlp Toker2014-01-14
* When performing a delayed access check, use the surrounding lexical context forRichard Smith2013-12-11
* Fix init-captures for generic lambdas.Faisal Vali2013-12-05
* Fix typo correction usage of SemaAccess.cpp.Eli Friedman2013-10-01
* Teach typo correction to look inside of classes like it does namespaces.Kaelyn Uhrain2013-09-26
* Switch the semantic DeclContext for a block-scope declaration of a function orRichard Smith2013-09-20
* Use pop_back_val() instead of both back() and pop_back().Robert Wilhelm2013-08-23
* OpenMP: basic support for #pragma omp parallelAlexey Bataev2013-07-19
* Test commitSerge Pavlov2013-05-07
* Implement DR580: access checks for template parameters of a class template areRichard Smith2013-04-29
* Don't crash when diagnosing path-constrained protectedJohn McCall2013-02-27
* Only suppress instance context if a member is actuallyJohn McCall2013-02-22
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-04
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru2012-09-27
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-27
* When computing the effective context for access control,John McCall2012-08-24
* Fix a few -Wdocumentation warnings.Dmitri Gribenko2012-08-24
* Check access to friend declarations. There's a number of differentJohn McCall2012-08-10
* Drop the ASTContext.h include from Stmt.h and fix up transitive users.Benjamin Kramer2012-07-04
* Diagnostics cleanup: Fixing \params to match the code.James Dennett2012-06-22
* Change how we suppress access control in explicit instantiationsJohn McCall2012-05-07
* There is no reason for these methods to be out-of-line.John McCall2012-05-07
* Fix a comment.Francois Pichet2012-04-19
* As per John McCall comment:Francois Pichet2012-04-18
* Emulate a MSVC bug where the creation of pointer-to-member to protected membe...Francois Pichet2012-04-17
* Fix the access check performed as part of the determination of whetherJohn McCall2012-04-09
* Fix several problems with protected access control:John McCall2012-04-07
* Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie2012-03-11
* Introduce a new initialization entity for lambda captures, andDouglas Gregor2012-02-15
* Remove unused variables.Benjamin Kramer2012-01-20
* Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie2012-01-17
* De-virtualize getPreviousDecl() and getMostRecentDecl() when we knowDouglas Gregor2012-01-14
* Change the diagnostics which said 'accepted as an extension' to instead sayRichard Smith2011-12-29
* Replace all comparisons between ObjCInterfaceDecl pointers with callsDouglas Gregor2011-12-15
* When we're checking access in a dependent context, don't try to lookDouglas Gregor2011-11-14
* Extend IsSimplyAccessible to check for Objective-C instance variableDouglas Gregor2011-11-03
* Class can't be null in this contextDouglas Gregor2011-11-03
* Refactor Sema::IsSimplyAccessible slightly, to work on a DeclContext rather t...Douglas Gregor2011-11-03
* Don't crash in Sema::IsSimplyAccessible if the declaration is not a C++ class...Douglas Gregor2011-10-10
* The effective context of a friend function is its lexicalDouglas Gregor2011-10-09