set up config for VC++ 2010 beta 1

[SVN r53155]
This commit is contained in:
Beman Dawes
2009-05-21 15:16:39 +00:00
parent b03d5829b5
commit d46a6d5ec8
6 changed files with 38 additions and 30 deletions
+3 -5
View File
@@ -7,16 +7,14 @@
// See http://www.boost.org/libs/config for more information.
// MACRO: BOOST_NO_LAMBDAS
// TITLE: C++0x lambdas feature unavailable
// DESCRIPTION: The compiler does not support the C++0x lambdas feature
#include <cassert>
// TITLE: C++0x lambda feature unavailable
// DESCRIPTION: The compiler does not support the C++0x lambda feature
namespace boost_no_lambdas {
int test()
{
assert( 12345 == [](){return 12345;} );
[](){};
return 0;
}