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