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-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