Add C++26 feature test macros plus a few missing C++23 ones.

This commit is contained in:
jzmaddock
2026-07-11 16:22:18 +01:00
parent c1c984b93c
commit 0742c3beae
183 changed files with 759 additions and 163 deletions
+37 -1
View File
@@ -1,6 +1,6 @@
#
# *** DO NOT EDIT THIS FILE BY HAND ***
# This file was automatically generated on Sat Jul 11 14:13:01 2026
# This file was automatically generated on Sat Jul 11 16:20:44 2026
# by libs/config/tools/generate.cpp
# Copyright John Maddock.
# Use, modification and distribution are subject to the
@@ -257,8 +257,44 @@ obj cxx11_variadic_macros : test_case.cpp /boost/config//boost_config : <define>
obj cxx11_variadic_templates : test_case.cpp /boost/config//boost_config : <define>TEST_BOOST_NO_CXX11_VARIADIC_TEMPLATES ;
obj void_returns : test_case.cpp /boost/config//boost_config : <define>TEST_BOOST_NO_VOID_RETURNS ;
obj intrinsic_wchar_t : test_case.cpp /boost/config//boost_config : <define>TEST_BOOST_NO_INTRINSIC_WCHAR_T ;
obj cpp_constexpr_26 : std/cpp_constexpr_26.cpp ;
alias cpp_constexpr : cpp_constexpr_26 ;
obj cpp_constexpr_exceptions_26 : std/cpp_constexpr_exceptions_26.cpp ;
alias cpp_constexpr_exceptions : cpp_constexpr_exceptions_26 ;
obj cpp_constexpr_virtual_inheritance_26 : std/cpp_constexpr_virtual_inheritance_26.cpp ;
alias cpp_constexpr_virtual_inheritance : cpp_constexpr_virtual_inheritance_26 ;
obj cpp_contracts_26 : std/cpp_contracts_26.cpp ;
alias cpp_contracts : cpp_contracts_26 ;
obj cpp_deleted_function_26 : std/cpp_deleted_function_26.cpp ;
alias cpp_deleted_function : cpp_deleted_function_26 ;
obj cpp_expansion_statements_26 : std/cpp_expansion_statements_26.cpp ;
alias cpp_expansion_statements : cpp_expansion_statements_26 ;
obj cpp_fold_expressions_26 : std/cpp_fold_expressions_26.cpp ;
alias cpp_fold_expressions : cpp_fold_expressions_26 ;
obj cpp_impl_reflection_26 : std/cpp_impl_reflection_26.cpp ;
alias cpp_impl_reflection : cpp_impl_reflection_26 ;
obj cpp_pack_indexing_26 : std/cpp_pack_indexing_26.cpp ;
alias cpp_pack_indexing : cpp_pack_indexing_26 ;
obj cpp_placeholder_variables_26 : std/cpp_placeholder_variables_26.cpp ;
alias cpp_placeholder_variables : cpp_placeholder_variables_26 ;
obj cpp_pp_embed_26 : std/cpp_pp_embed_26.cpp ;
alias cpp_pp_embed : cpp_pp_embed_26 ;
obj cpp_static_assert_26 : std/cpp_static_assert_26.cpp ;
alias cpp_static_assert : cpp_static_assert_26 ;
obj cpp_structured_bindings_26 : std/cpp_structured_bindings_26.cpp ;
alias cpp_structured_bindings : cpp_structured_bindings_26 ;
obj cpp_trivial_union_26 : std/cpp_trivial_union_26.cpp ;
alias cpp_trivial_union : cpp_trivial_union_26 ;
obj cpp_variadic_friend_26 : std/cpp_variadic_friend_26.cpp ;
alias cpp_variadic_friend : cpp_variadic_friend_26 ;
obj cpp_auto_cast_23 : std/cpp_auto_cast_23.cpp ;
alias cpp_auto_cast : cpp_auto_cast_23 ;
obj cpp_char8_t_23 : std/cpp_char8_t_23.cpp ;
alias cpp_char8_t : cpp_char8_t_23 ;
obj cpp_consteval_23 : std/cpp_consteval_23.cpp ;
alias cpp_consteval : cpp_consteval_23 ;
obj cpp_constexpr_23 : std/cpp_constexpr_23.cpp ;
alias cpp_constexpr : cpp_constexpr_23 ;
obj cpp_explicit_this_parameter_23 : std/cpp_explicit_this_parameter_23.cpp ;
alias cpp_explicit_this_parameter : cpp_explicit_this_parameter_23 ;
obj cpp_if_consteval_23 : std/cpp_if_consteval_23.cpp ;
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+30
View File
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_auto_cast
#error "Macro << __cpp_auto_cast is not set"
#endif
#if __cpp_auto_cast < 202110
#error "Macro __cpp_auto_cast had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+30
View File
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_char8_t
#error "Macro << __cpp_char8_t is not set"
#endif
#if __cpp_char8_t < 202207
#error "Macro __cpp_char8_t had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+30
View File
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_constexpr
#error "Macro << __cpp_constexpr is not set"
#endif
#if __cpp_constexpr < 202211
#error "Macro __cpp_constexpr had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
+30
View File
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_constexpr
#error "Macro << __cpp_constexpr is not set"
#endif
#if __cpp_constexpr < 202406
#error "Macro __cpp_constexpr had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_constexpr_exceptions
#error "Macro << __cpp_constexpr_exceptions is not set"
#endif
#if __cpp_constexpr_exceptions < 202411
#error "Macro __cpp_constexpr_exceptions had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_constexpr_virtual_inheritance
#error "Macro << __cpp_constexpr_virtual_inheritance is not set"
#endif
#if __cpp_constexpr_virtual_inheritance < 202506
#error "Macro __cpp_constexpr_virtual_inheritance had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
+30
View File
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_contracts
#error "Macro << __cpp_contracts is not set"
#endif
#if __cpp_contracts < 202606
#error "Macro __cpp_contracts had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+30
View File
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_deleted_function
#error "Macro << __cpp_deleted_function is not set"
#endif
#if __cpp_deleted_function < 202403
#error "Macro __cpp_deleted_function had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_expansion_statements
#error "Macro << __cpp_expansion_statements is not set"
#endif
#if __cpp_expansion_statements < 202506
#error "Macro __cpp_expansion_statements had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+30
View File
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_fold_expressions
#error "Macro << __cpp_fold_expressions is not set"
#endif
#if __cpp_fold_expressions < 202406
#error "Macro __cpp_fold_expressions had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+30
View File
@@ -0,0 +1,30 @@
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// 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 the most recent version.//
// Revision $Id$
//
#ifdef __has_include
#if __has_include(<version>)
#include <version>
#endif
#endif
#ifndef __cpp_impl_reflection
#error "Macro << __cpp_impl_reflection is not set"
#endif
#if __cpp_impl_reflection < 202506
#error "Macro __cpp_impl_reflection had too low a value"
#endif
int main( int, char *[] )
{
return 0;
}
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:01 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the
+1 -1
View File
@@ -1,4 +1,4 @@
// This file was automatically generated on Sat Jul 11 14:13:00 2026
// This file was automatically generated on Sat Jul 11 16:20:44 2026
// by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-21.
// Use, modification and distribution are subject to the

Some files were not shown because too many files have changed in this diff Show More