On Feb 22, 2012, at 7:02 PM, Douglas Gregor wrote: > Author: dgregor > Date: Wed Feb 22 21:02:32 2012 > New Revision: 151231 > > URL: http://llvm.org/viewvc/llvm-project?rev=151231&view=rev > Log: > Clang now supports lambda expressions.
Wewt! Release note? :) -Chris > > Modified: > cfe/trunk/lib/Lex/PPMacroExpansion.cpp > cfe/trunk/test/Lexer/has_feature_cxx0x.cpp > cfe/trunk/www/cxx_status.html > > Modified: cfe/trunk/lib/Lex/PPMacroExpansion.cpp > URL: > http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/PPMacroExpansion.cpp?rev=151231&r1=151230&r2=151231&view=diff > ============================================================================== > --- cfe/trunk/lib/Lex/PPMacroExpansion.cpp (original) > +++ cfe/trunk/lib/Lex/PPMacroExpansion.cpp Wed Feb 22 21:02:32 2012 > @@ -649,7 +649,7 @@ > .Case("cxx_implicit_moves", LangOpts.CPlusPlus0x) > //.Case("cxx_inheriting_constructors", false) > .Case("cxx_inline_namespaces", LangOpts.CPlusPlus0x) > - //.Case("cxx_lambdas", false) > + .Case("cxx_lambdas", LangOpts.CPlusPlus0x) > .Case("cxx_nonstatic_member_init", LangOpts.CPlusPlus0x) > .Case("cxx_noexcept", LangOpts.CPlusPlus0x) > .Case("cxx_nullptr", LangOpts.CPlusPlus0x) > > Modified: cfe/trunk/test/Lexer/has_feature_cxx0x.cpp > URL: > http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Lexer/has_feature_cxx0x.cpp?rev=151231&r1=151230&r2=151231&view=diff > ============================================================================== > --- cfe/trunk/test/Lexer/has_feature_cxx0x.cpp (original) > +++ cfe/trunk/test/Lexer/has_feature_cxx0x.cpp Wed Feb 22 21:02:32 2012 > @@ -16,7 +16,7 @@ > int no_lambdas(); > #endif > > -// CHECK-0X: no_lambdas > +// CHECK-0X: has_lambdas > // CHECK-NO-0X: no_lambdas > > > > Modified: cfe/trunk/www/cxx_status.html > URL: > http://llvm.org/viewvc/llvm-project/cfe/trunk/www/cxx_status.html?rev=151231&r1=151230&r2=151231&view=diff > ============================================================================== > --- cfe/trunk/www/cxx_status.html (original) > +++ cfe/trunk/www/cxx_status.html Wed Feb 22 21:02:32 2012 > @@ -107,9 +107,9 @@ > <td class="full" align="center">Clang 2.9</td> > </tr> > <tr> > - <td>New wording for C++0x lambdas</td> > + <td>Lambda expressions</td> > <td><a > href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2927.pdf">N2927</a></td> > - <td class="none" align="center">No</td> > + <td class="full" align="center">SVN</td> > </tr> > <tr> > <td>Declared type of an expression</td> > > > _______________________________________________ > cfe-commits mailing list > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
