mirror of
https://github.com/boostorg/config.git
synced 2025-08-04 14:44:28 +02:00
Merge pull request #421 from boostorg/issue418
Refactor C++20 header configuration.
This commit is contained in:
38
.github/workflows/ci.yml
vendored
38
.github/workflows/ci.yml
vendored
@@ -244,6 +244,44 @@ jobs:
|
|||||||
- name: Test
|
- name: Test
|
||||||
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17,latest toolset=msvc-14.3
|
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17,latest toolset=msvc-14.3
|
||||||
working-directory: ../boost-root/libs/config/test
|
working-directory: ../boost-root/libs/config/test
|
||||||
|
windows_clang_msvc_14_3:
|
||||||
|
runs-on: windows-2022
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: cmd
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
toolset: [ clang-msvc-14.3 ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: '0'
|
||||||
|
- uses: mstachniuk/ci-skip@v1
|
||||||
|
with:
|
||||||
|
commit-filter: '[skip ci];[ci skip];[CI SKIP];[SKIP CI];***CI SKIP***;***SKIP CI***;[apple];[Apple];[APPLE];[linux];[Linux];[LINUX]'
|
||||||
|
commit-filter-separator: ';'
|
||||||
|
fail-fast: true
|
||||||
|
- name: Checkout main boost
|
||||||
|
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||||
|
- name: Update Dependencies
|
||||||
|
run: git submodule update --init tools/build tools/boost_install libs/headers libs/detail libs/core libs/assert libs/type_traits
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Copy files
|
||||||
|
run: xcopy /s /e /q %GITHUB_WORKSPACE% libs\config
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Bootstrap
|
||||||
|
run: bootstrap
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Generate headers
|
||||||
|
run: b2 headers
|
||||||
|
working-directory: ../boost-root
|
||||||
|
- name: Config info
|
||||||
|
run: ..\..\..\b2 print_config_info cxxstd=14,17,latest address-model=64 toolset=clang-win embed-manifest-via=linker
|
||||||
|
working-directory: ../boost-root/libs/config/test
|
||||||
|
- name: Test
|
||||||
|
run: ..\..\..\b2 --hash address-model=64 cxxstd=14,17,latest toolset=clang-win embed-manifest-via=linker
|
||||||
|
working-directory: ../boost-root/libs/config/test
|
||||||
non_intel_ubuntu_20_04_gcc:
|
non_intel_ubuntu_20_04_gcc:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
strategy:
|
strategy:
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
# *** DO NOT EDIT THIS FILE BY HAND ***
|
# *** DO NOT EDIT THIS FILE BY HAND ***
|
||||||
# This file was automatically generated on Tue Aug 17 16:27:31 2021
|
# This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
# by libs/config/tools/generate.cpp
|
# by libs/config/tools/generate.cpp
|
||||||
# Copyright John Maddock.
|
# Copyright John Maddock.
|
||||||
# Use, modification and distribution are subject to the
|
# Use, modification and distribution are subject to the
|
||||||
@@ -147,6 +147,7 @@ obj cxx20_hdr_source_location : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_
|
|||||||
obj cxx20_hdr_span : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_SPAN ;
|
obj cxx20_hdr_span : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_SPAN ;
|
||||||
obj cxx20_hdr_stop_token : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_STOP_TOKEN ;
|
obj cxx20_hdr_stop_token : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_STOP_TOKEN ;
|
||||||
obj cxx20_hdr_syncstream : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_SYNCSTREAM ;
|
obj cxx20_hdr_syncstream : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_SYNCSTREAM ;
|
||||||
|
obj cxx20_hdr_version : test_case.cpp : <define>TEST_BOOST_NO_CXX20_HDR_VERSION ;
|
||||||
obj cxx98_binders : test_case.cpp : <define>TEST_BOOST_NO_CXX98_BINDERS ;
|
obj cxx98_binders : test_case.cpp : <define>TEST_BOOST_NO_CXX98_BINDERS ;
|
||||||
obj cxx98_function_base : test_case.cpp : <define>TEST_BOOST_NO_CXX98_FUNCTION_BASE ;
|
obj cxx98_function_base : test_case.cpp : <define>TEST_BOOST_NO_CXX98_FUNCTION_BASE ;
|
||||||
obj cxx98_random_shuffle : test_case.cpp : <define>TEST_BOOST_NO_CXX98_RANDOM_SHUFFLE ;
|
obj cxx98_random_shuffle : test_case.cpp : <define>TEST_BOOST_NO_CXX98_RANDOM_SHUFFLE ;
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// This file was automatically generated on Tue Aug 17 16:27:31 2021
|
// This file was automatically generated on Thu Feb 3 18:10:41 2022
|
||||||
// by libs/config/tools/generate.cpp
|
// by libs/config/tools/generate.cpp
|
||||||
// Copyright John Maddock 2002-21.
|
// Copyright John Maddock 2002-21.
|
||||||
// Use, modification and distribution are subject to the
|
// Use, modification and distribution are subject to the
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user