• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2//  (C) Copyright Kohei Takahashi 2014
3
4//  Use, modification and distribution are subject to the
5//  Boost Software License, Version 1.0. (See accompanying file
6//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
8//  See http://www.boost.org/libs/config for more information.
9
10//  MACRO:         BOOST_NO_CXX14_GENERIC_LAMBDAS
11//  TITLE:         C++14 generic lambda unavailable
12//  DESCRIPTION:   The compiler does not support C++14 generic lambda
13
14namespace boost_no_cxx14_generic_lambdas
15{
16
17int test()
18{
19    return [](auto ret) { return ret; } (0);
20}
21
22}
23
24