boost_no_cxx14_generic_lambda.ipp 578 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_GENERIC_LAMBDAS
  7. // TITLE: C++14 generic lambda unavailable
  8. // DESCRIPTION: The compiler does not support C++14 generic lambda
  9. namespace boost_no_cxx14_generic_lambdas
  10. {
  11. int test()
  12. {
  13. return [](auto ret) { return ret; } (0);
  14. }
  15. }