summaryrefslogtreecommitdiffstats
path: root/lib/Sema/SemaLambda.cpp
Commit message (Expand)AuthorAgeFilesLines
* DR1048: drop top-level cv-qualifiers when deducing the return type of aRichard Smith2014-12-191-2/+7
* Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator...David Blaikie2014-11-191-1/+1
* Pass around CorrectionCandidateCallbacks as unique_ptrs soKaelyn Takata2014-10-271-2/+2
* [C++11] Support for capturing of variable length arrays in lambda expression.Alexey Bataev2014-08-281-0/+6
* C++1y is now C++14!Aaron Ballman2014-08-191-3/+3
* Refactoring. Remove release and take methods from ActionResult. Rename takeAs...Nikola Smiljanic2014-05-291-5/+5
* [C++11] Use 'nullptr'. Sema edition.Craig Topper2014-05-261-26/+27
* Consolidate single void paramter checkingAlp Toker2014-05-111-4/+1
* Decouple ExprCXX.h and DeclCXX.h and clean up includes a bit.Benjamin Kramer2014-05-101-10/+6
* Fix a bunch of mislayered clang/Lex includes from SemaAlp Toker2014-05-031-15/+13
* [Sema] Adjust Sema::getCurBlock()/getCurLambda() to take into account that we...Argyrios Kyrtzidis2014-04-261-1/+2
* PR19249: Don't forget to DiagnoseUseOfDecl for the implicit use of a variableRichard Smith2014-03-251-0/+2
* DR1346: a parenthesized braced-init-list cannot be used as the initializer whenRichard Smith2014-03-121-0/+3
* Reverting llvm::distance changes to use std::distance with iterators instead,...Aaron Ballman2014-03-101-4/+2
* [C++11] Replacing RecordDecl iterators field_begin() and field_end() with ite...Aaron Ballman2014-03-081-10/+6
* [C++11] Replacing ObjCMethodDecl iterators param_begin() and param_end() with...Aaron Ballman2014-03-071-4/+2
* argument -> parameter terminology fixes for FunctionTypeInfoAlp Toker2014-02-261-5/+5
* Implement DR577David Majnemer2014-02-191-1/+0
* PR18128: a lambda capture-default is not permitted for a non-local lambdaRichard Smith2014-02-061-1/+18
* Rename getResultLoc() tooAlp Toker2014-01-251-1/+1
* Rename getResultType() on function and method declarations to getReturnType()Alp Toker2014-01-251-5/+5
* Update FunctionTypeLoc and related names to match r199686Alp Toker2014-01-211-2/+2
* Rename FunctionProtoType accessors from 'arguments' to 'parameters'Alp Toker2014-01-201-5/+6
* Sort all the #include lines with LLVM's utils/sort_includes.py whichChandler Carruth2014-01-071-1/+1
* Rename a variable that I missed in the previous refactoring.Faisal Vali2013-12-091-4/+4
* Fix the message to go along with the assertion that was just fixed.Faisal Vali2013-12-081-1/+1
* Fix an assertion introduced by my previous refactoring.Faisal Vali2013-12-081-6/+4
* [REFACTOR] Refactored some of the generic-lambda capturing code.Faisal Vali2013-12-071-93/+182
* Fix init-captures for generic lambdas.Faisal Vali2013-12-051-19/+109
* This patch implements capturing of variables within generic lambdas.Faisal Vali2013-11-071-9/+108
* Sema: Improve comment introduced in r193397David Majnemer2013-11-051-0/+5
* Sema: Do not allow lambda expressions to appear inside of constant expressionsDavid Majnemer2013-10-251-4/+9
* Fix an instantiation bug with nested generic lambdas and conversion to fptrs.Faisal Vali2013-10-241-41/+107
* Refactor out the circular reference to LambdaExpr in CXXRecordDecl.Faisal Vali2013-10-231-25/+32
* Revert r193223 and r193216.Rafael Espindola2013-10-231-32/+25
* Remove the circular reference to LambdaExpr in CXXRecordDecl.Faisal Vali2013-10-231-25/+32
* Implement conversion to function pointer for generic lambdas without captures.Faisal Vali2013-09-291-6/+42
* Add compat/extension warnings for init captures.Richard Smith2013-09-281-0/+4
* Switch from putting init capture VarDecls in the surrounding DeclContext toRichard Smith2013-09-281-1/+1
* Per latest drafting, switch to implementing init-captures as if by declaringRichard Smith2013-09-281-127/+88
* Implement a rudimentary form of generic lambdas.Faisal Vali2013-09-261-27/+83
* Refactor to use C++1y 'auto' semantics directly in lambdas with no specifiedRichard Smith2013-09-251-14/+40
* [ms-cxxabi] Implement guard variables for static initializationReid Kleckner2013-09-101-1/+11
* Note when a decl is used in AST files.Eli Friedman2013-09-051-1/+1
* Delete CC_Default and use the target default CC everywhereReid Kleckner2013-08-271-8/+13
* Revert "Implement a rudimentary form of generic lambdas."Manuel Klimek2013-08-221-129/+30
* Revert "Remove some unused variables identified by Juergen Ributzka *I need t...Manuel Klimek2013-08-221-0/+1
* Remove some unused variables identified by Juergen Ributzka *I need to turn o...Faisal Vali2013-08-221-1/+0
* Implement a rudimentary form of generic lambdas.Faisal Vali2013-08-221-30/+129
* Expose LambdaIntroducer::DefaultLoc in the AST's LambdaExpr.James Dennett2013-08-091-2/+10