aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/lambda-expressions.cpp
AgeCommit message (Expand)Author
2012-12-06Sema: Don't emit a warning when __func__ is used in a lambda outside of a fun...Benjamin Kramer
2012-10-24Update regression tests for r166617.Eli Friedman
2012-10-20DR1472: A reference isn't odr-used if it has preceding initialization,Richard Smith
2012-09-20Handle lambdas where the lambda-declarator is an explicit "(void)". PR13854.Eli Friedman
2012-09-18Add an extra check for invalid decls in the lambda semantic analysis to avoid...Eli Friedman
2012-08-08Implement warning for integral null pointer constants other than the literal 0.David Blaikie
2012-07-25PR12057: Allow variadic template pack expansions to cross lambda boundaries.Richard Smith
2012-06-04Fixes some test cases that should have come along with r157943.Aaron Ballman
2012-03-13Make the error about assigning to lambda-captured variablesJohn McCall
2012-03-13Alternate fix to PR12248: put Sema in charge of special-casingJohn McCall
2012-03-12Make sure we treat variables captured by reference in lambda as modifiable lv...Eli Friedman
2012-03-02Ensure that we instantiate static reference data members of class templatesRichard Smith
2012-02-24Remove FIXME: as Eli points out, the behavior here is now correct.Richard Smith
2012-02-24When checking whether a reference to a variable is an ICE, look at the type ofRichard Smith
2012-02-21Only pop the expression evaluation context corresponding to a lambdaDouglas Gregor
2012-02-18Rewrite variable capture within lambda expressions and blocks,Douglas Gregor
2012-02-12Within the body of a lambda expression, decltype((x)) for anDouglas Gregor
2012-02-09Implement return type deduction for lambdas per C++11Douglas Gregor
2012-02-09Remove the "unsupported" error for lambda expressions. It's annoying,Douglas Gregor
2012-02-09Various interrelated cleanups for lambdas:Douglas Gregor
2012-02-06Fix the result of VarDecl::checkInitIsICE so it is consistently accurate in C...Eli Friedman
2012-02-03Make explicit captures which cause implicit captures work correctly.Eli Friedman
2012-02-03Implement implicit capture for lambda expressions.Eli Friedman
2012-02-01Introduce the lambda scope before determining explicit captures, whichDouglas Gregor
2012-02-01Improve checking of explicit captures in a C++11 lambda expression:Douglas Gregor
2012-01-26Add an additional testcase for a lambda with implicit void return type.Eli Friedman
2012-01-26Refactor to share code for handling return statements between lambda expressi...Eli Friedman
2012-01-07More lambda work: semantic analysis of capturing 'this'. It's a bit complica...Eli Friedman
2012-01-07Lambdas: semantic analysis of explicit captures.Eli Friedman