mirror of
https://github.com/boostorg/config.git
synced 2025-10-07 13:10:59 +02:00
25 lines
598 B
C++
25 lines
598 B
C++
// (C) Copyright John Maddock 2023
|
|
|
|
// 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_CXX23_HDR_GENERATOR
|
|
// TITLE: C++23 header <generator> unavailable
|
|
// DESCRIPTION: The standard library does not supply C++23 header <generator>
|
|
|
|
#include <generator>
|
|
|
|
namespace boost_no_cxx23_hdr_generator {
|
|
|
|
int test()
|
|
{
|
|
using std::generator;
|
|
|
|
return 0;
|
|
}
|
|
|
|
}
|