Age | Commit message (Expand) | Author |
2012-05-07 | Change how we suppress access control in explicit instantiations | John McCall |
2012-05-07 | There is no reason for these methods to be out-of-line. | John McCall |
2012-04-19 | Fix a comment. | Francois Pichet |
2012-04-18 | As per John McCall comment: | Francois Pichet |
2012-04-17 | Emulate a MSVC bug where the creation of pointer-to-member to protected membe... | Francois Pichet |
2012-04-09 | Fix the access check performed as part of the determination of whether | John McCall |
2012-04-07 | Fix several problems with protected access control: | John McCall |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-02-15 | Introduce a new initialization entity for lambda captures, and | Douglas Gregor |
2012-01-20 | Remove unused variables. | Benjamin Kramer |
2012-01-17 | Remove unreachable code in Clang. (replace with llvm_unreachable where approp... | David Blaikie |
2012-01-14 | De-virtualize getPreviousDecl() and getMostRecentDecl() when we know | Douglas Gregor |
2011-12-29 | Change the diagnostics which said 'accepted as an extension' to instead say | Richard Smith |
2011-12-15 | Replace all comparisons between ObjCInterfaceDecl pointers with calls | Douglas Gregor |
2011-11-14 | When we're checking access in a dependent context, don't try to look | Douglas Gregor |
2011-11-03 | Extend IsSimplyAccessible to check for Objective-C instance variable | Douglas Gregor |
2011-11-03 | Class can't be null in this context | Douglas Gregor |
2011-11-03 | Refactor Sema::IsSimplyAccessible slightly, to work on a DeclContext rather t... | Douglas Gregor |
2011-10-10 | Don't crash in Sema::IsSimplyAccessible if the declaration is not a C++ class... | Douglas Gregor |
2011-10-09 | The effective context of a friend function is its lexical | Douglas Gregor |
2011-10-06 | Added CXAvailability_NotAccessible to indicate that a declaration is availabl... | Erik Verbruggen |
2011-09-21 | Enforce access control for conversion operators used in contextual | John McCall |
2011-09-20 | Move Microsoft access specifier bug emulation from -fms-extensions to -fm-com... | Francois Pichet |
2011-09-19 | Removed an unused field and its accessors methods. | Erik Verbruggen |
2011-09-17 | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-06-10 | Implement caching of default constructors on the resolution table. This | Sean Hunt |
2011-05-25 | Update our diagnostics to properly account for move operations. | Sean Hunt |
2011-05-23 | Emulate a MSVC bug where if during an using declaration name lookup, the decl... | Francois Pichet |
2011-05-19 | Undo enough of r131143 to make private copy ctor diags say "copy constructor"... | Matt Beaumont-Gay |
2011-05-12 | Hrm | Sean Hunt |
2011-05-10 | Re-do R131114 without breaking code. | Sean Hunt |
2011-05-05 | Implement support for C++0x alias templates. | Richard Smith |
2011-04-15 | Support for C++11 (non-template) alias declarations. | Richard Smith |
2011-02-15 | Handle delayed access in local declarations. PR9229. | John McCall |
2011-02-14 | When parsing an out-of-line member function declaration, we must delay | John McCall |
2010-11-28 | Minor whitespace and comment fixes. No functionality change. | Nico Weber |
2010-10-20 | Access control polish: drop the note on the original declaration and | John McCall |
2010-10-16 | White-listing templated-scope friend decls is a good idea, but doing it | John McCall |
2010-10-12 | Handle dependent friends more explicitly and deal with the possibility | John McCall |
2010-09-03 | Add a quick-and-dirty hack to give a better diagnostic for [class.protected] | John McCall |
2010-08-28 | That's not the right direction to compute notional accessibility in at all. | John McCall |
2010-08-28 | Fix build. Bad me, adding last-minute assertions. | John McCall |
2010-08-28 | When checking access control for an instance member access on | John McCall |
2010-08-27 | Propagate whether an id-expression is the immediate argument of | John McCall |
2010-08-26 | Restore r112114 now that SmallVector<...,0> is safe. | John McCall |
2010-08-26 | Revert r112114, "Pull DelayedDiagnostic and AccessedEntity out into their own | Daniel Dunbar |
2010-08-25 | Pull DelayedDiagnostic and AccessedEntity out into their own header. | John McCall |
2010-08-25 | Split out a header to hold APIs meant for the Sema implementation from Sema.h. | John McCall |
2010-08-20 | Revert r111609, which is failing its new test. | Douglas Gregor |