boost_no_cxx14_lambda_capture.ipp 622 B

1234567891011121314151617181920212223
  1. // (C) Copyright Kohei Takahashi 2014
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/config for more information.
  6. // MACRO: BOOST_NO_CXX14_INITIALIZED_LAMBDA_CAPTURES
  7. // TITLE: C++14 initialized lambda capture unavailable
  8. // DESCRIPTION: The compiler does not support C++14 initialized lambda capture
  9. namespace boost_no_cxx14_initialized_lambda_captures
  10. {
  11. int test()
  12. {
  13. return [ret = 0] { return ret; } ();
  14. }
  15. }