mirror of
https://github.com/boostorg/local_function.git
synced 2026-01-29 19:42:15 +00:00
Updating docs.
[SVN r77944]
This commit is contained in:
28
example/const_block_error_cxx11_lambda.cpp
Normal file
28
example/const_block_error_cxx11_lambda.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
// Copyright (C) 2009-2012 Lorenzo Caminiti
|
||||
// Distributed under the Boost Software License, Version 1.0
|
||||
// (see accompanying file LICENSE_1_0.txt or a copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
// Home at http://www.boost.org/libs/local_function
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#ifdef BOOST_NO_LAMBDAS
|
||||
# error "requires lambda functions"
|
||||
#else
|
||||
|
||||
#include <cassert>
|
||||
|
||||
int main(void) {
|
||||
//[const_block_cxx11_lambda
|
||||
int x = 1, y = 2;
|
||||
const decltype(x)& const_x = x; // Constant so cannot be modified
|
||||
const decltype(y)& const_y = y; // and reference so no copy.
|
||||
[&const_x, &const_y]() { // Lambda functions (C++11 only).
|
||||
assert(const_x = const_y); // Unfortunately, `const_` names.
|
||||
}();
|
||||
//]
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif // LAMBDAS
|
||||
|
||||
Reference in New Issue
Block a user