Age | Commit message (Expand) | Author | Files | Lines |
2016-06-28 | P0136R1, DR1573, DR1645, DR1715, DR1736, DR1903, DR1941, DR1959, DR1991: | Richard Smith | 1 | -9/+17 |
2016-06-01 | [Sema] Fix incorrect enum token namespace | Etienne Bergeron | 1 | -3/+3 |
2016-03-23 | Make SemaAccess smarter about determining when a dependent class might | Richard Smith | 1 | -10/+5 |
2016-03-08 | Fix crash in access check for aggregate initialization of base classes. It's | Richard Smith | 1 | -1/+5 |
2015-08-12 | -Wdeprecated: SavedInstanceContext is returned by value but isn't really copy... | David Blaikie | 1 | -3/+8 |
2015-07-29 | [SemaAccess] Provide meaningful message when we hit llvm_unreachable(). | Davide Italiano | 1 | -1/+1 |
2015-06-22 | Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). | Alexander Kornienko | 1 | -2/+2 |
2015-06-22 | Fixed/added namespace ending comments using clang-tidy. NFC | Alexander Kornienko | 1 | -2/+2 |
2015-05-17 | [Sema] Improve llvm_unreachable() message. | Davide Italiano | 1 | -1/+1 |
2014-12-17 | Don't assume friended C++ method decls have qualifiers | Reid Kleckner | 1 | -2/+2 |
2014-05-28 | Consolidate some note diagnostics | Alp Toker | 1 | -1/+2 |
2014-05-26 | [C++11] Use 'nullptr'. Sema edition. | Craig Topper | 1 | -12/+13 |
2014-03-13 | [C++11] Replacing CXXRecordDecl iterators friend_begin() and friend_end() wit... | Aaron Ballman | 1 | -4/+1 |
2014-03-13 | [C++11] Replacing CXXRecordDecl iterators bases_begin() and bases_end() with ... | Aaron Ballman | 1 | -9/+5 |
2014-03-07 | [C++11] Replacing DeclBase iterators decls_begin() and decls_end() with itera... | Aaron Ballman | 1 | -5/+3 |
2014-02-08 | Move the -fms-compatibility using decl check after real access checking | Reid Kleckner | 1 | -4/+3 |
2014-01-25 | Rename getResultType() on function and method declarations to getReturnType() | Alp Toker | 1 | -3/+2 |
2014-01-22 | Change a dyn_cast from r199794 to a straight cast | Alp Toker | 1 | -1/+1 |
2014-01-22 | Introduce and use Decl::getAsFunction() to simplify templated function checks | Alp Toker | 1 | -14/+8 |
2014-01-20 | Rename FunctionProtoType accessors from 'arguments' to 'parameters' | Alp Toker | 1 | -5/+4 |
2014-01-14 | Rename language option MicrosoftMode to MSVCCompat | Alp Toker | 1 | -2/+2 |
2013-12-11 | When performing a delayed access check, use the surrounding lexical context for | Richard Smith | 1 | -5/+4 |
2013-12-05 | Fix init-captures for generic lambdas. | Faisal Vali | 1 | -2/+2 |
2013-10-01 | Fix typo correction usage of SemaAccess.cpp. | Eli Friedman | 1 | -5/+3 |
2013-09-26 | Teach typo correction to look inside of classes like it does namespaces. | Kaelyn Uhrain | 1 | -0/+2 |
2013-09-20 | Switch the semantic DeclContext for a block-scope declaration of a function or | Richard Smith | 1 | -1/+3 |
2013-08-23 | Use pop_back_val() instead of both back() and pop_back(). | Robert Wilhelm | 1 | -2/+1 |
2013-07-19 | OpenMP: basic support for #pragma omp parallel | Alexey Bataev | 1 | -0/+15 |
2013-05-07 | Test commit | Serge Pavlov | 1 | -3/+1 |
2013-04-29 | Implement DR580: access checks for template parameters of a class template are | Richard Smith | 1 | -9/+9 |
2013-02-27 | Don't crash when diagnosing path-constrained protected | John McCall | 1 | -104/+153 |
2013-02-22 | Only suppress instance context if a member is actually | John McCall | 1 | -2/+6 |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 1 | -3/+3 |
2012-09-27 | Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S... | Sylvestre Ledru | 1 | -1/+1 |
2012-09-27 | Fix a typo 'iff' => 'if' | Sylvestre Ledru | 1 | -1/+1 |
2012-08-24 | When computing the effective context for access control, | John McCall | 1 | -5/+10 |
2012-08-24 | Fix a few -Wdocumentation warnings. | Dmitri Gribenko | 1 | -1/+1 |
2012-08-10 | Check access to friend declarations. There's a number of different | John McCall | 1 | -19/+38 |
2012-07-04 | Drop the ASTContext.h include from Stmt.h and fix up transitive users. | Benjamin Kramer | 1 | -2/+4 |
2012-06-22 | Diagnostics cleanup: Fixing \params to match the code. | James Dennett | 1 | -3/+0 |
2012-05-07 | Change how we suppress access control in explicit instantiations | John McCall | 1 | -3/+0 |
2012-05-07 | There is no reason for these methods to be out-of-line. | John McCall | 1 | -12/+0 |
2012-04-19 | Fix a comment. | Francois Pichet | 1 | -1/+1 |
2012-04-18 | As per John McCall comment: | Francois Pichet | 1 | -4/+4 |
2012-04-17 | Emulate a MSVC bug where the creation of pointer-to-member to protected membe... | Francois Pichet | 1 | -0/+7 |
2012-04-09 | Fix the access check performed as part of the determination of whether | John McCall | 1 | -0/+23 |
2012-04-07 | Fix several problems with protected access control: | John McCall | 1 | -48/+140 |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 1 | -12/+12 |
2012-02-15 | Introduce a new initialization entity for lambda captures, and | Douglas Gregor | 1 | -0/+7 |
2012-01-20 | Remove unused variables. | Benjamin Kramer | 1 | -2/+0 |