aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/cxx0x-lambda-expressions.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-11-11N3922: direct-list-initialization of an auto-typed variable no longer deduces aRichard Smith1-1/+1
2015-02-11Add a warning for direct-list-initialization of a variable with a deduced typeRichard Smith1-1/+1
2015-01-12Parse: Don't let BalancedDelimiterTracker consume cxx_defaultarg_endDavid Majnemer1-0/+5
2015-01-12Parse: Don't parse beyond the end of the synthetic default argument tokDavid Majnemer1-0/+5
2015-01-09Parse: Don't crash when trailing return type is missingDavid Majnemer1-0/+7
2014-04-13PR19339: Disambiguate lambdas with init-captures from designated initializersRichard Smith1-1/+9
2014-04-02Render anonymous entities as '(anonymous <thing>)' (and lambdas as '(lambda a...David Blaikie1-1/+1
2014-03-12Allow GNU-style attributes on lambda expressions.Aaron Ballman1-1/+7
2014-03-11Improving test coverage for lambda expressions with attribute specifiers.Aaron Ballman1-1/+12
2014-03-11Changing this test case to use an unknown attribute, since there are not curr...Aaron Ballman1-1/+1
2014-03-11Gracefully handle an attribute specifier following a lambda introducer when t...Aaron Ballman1-0/+1
2013-09-28Add compat/extension warnings for init captures.Richard Smith1-6/+6
2013-09-28Per latest drafting, switch to implementing init-captures as if by declaringRichard Smith1-6/+4
2013-05-16First pass of semantic analysis for init-captures: check the initializer, buildRichard Smith1-9/+9
2013-05-09C++1y n3648: parse and reject init-captures for now.Richard Smith1-0/+18
2012-10-24Update regression tests for r166617.Eli Friedman1-1/+1
2012-08-30PR13652: Don't assume the parameter array on a FunctionTypeLoc for a lambda willRichard Smith1-0/+1
2012-08-09In 'delete []', the '[]' never starts a lambda. Update a FIXME with a standar...Richard Smith1-0/+7
2012-03-12Fix parsing of trailing-return-type. Types are syntactically prohibited fromRichard Smith1-1/+4
2012-02-17Disambiguate between C++11 lambda expressions and C99 arrayDouglas Gregor1-0/+11
2012-02-16Improve recovery for lambda expressions that have 'mutable' or aDouglas Gregor1-0/+2
2012-02-09Remove the "unsupported" error for lambda expressions. It's annoying,Douglas Gregor1-7/+7
2012-02-09Fix tests for r150123Douglas Gregor1-1/+1
2012-01-04Stub out the Sema interface for lambda expressions, and change the parser to ...Eli Friedman1-7/+7
2011-12-15Modify how the -verify flag works. Currently, the verification string andRichard Trieu1-2/+2
2011-10-13Update all tests other than Driver/std.cpp to use -std=c++11 rather thanRichard Smith1-1/+1
2011-08-04Parsing of C++0x lambda expressions, from John Freeman with help fromDouglas Gregor1-0/+27