2009-05-15 17:08:26 +00:00
|
|
|
// (C) Copyright Beman Dawes 2009
|
|
|
|
|
|
|
|
// Use, modification and distribution are subject to the
|
|
|
|
// Boost Software License, Version 1.0. (See accompanying file
|
|
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
|
|
// See http://www.boost.org/libs/config for more information.
|
|
|
|
|
|
|
|
// MACRO: BOOST_NO_LAMBDAS
|
2009-05-21 15:16:39 +00:00
|
|
|
// TITLE: C++0x lambda feature unavailable
|
|
|
|
// DESCRIPTION: The compiler does not support the C++0x lambda feature
|
2009-05-15 17:08:26 +00:00
|
|
|
|
|
|
|
namespace boost_no_lambdas {
|
|
|
|
|
|
|
|
int test()
|
|
|
|
{
|
2009-05-21 15:16:39 +00:00
|
|
|
[](){};
|
2009-05-15 17:08:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|