mirror of
https://github.com/boostorg/config.git
synced 2026-03-09 15:30:52 +01:00
Compare commits
116 Commits
boost-1.71
...
boost-1.75
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fad75493bd | ||
|
|
e797fc7938 | ||
|
|
49a88f2945 | ||
|
|
4d253c0efb | ||
|
|
46e0a13496 | ||
|
|
d6414910bc | ||
|
|
0ff8258ecf | ||
|
|
83fd6b3e9d | ||
|
|
ab7bb5c511 | ||
|
|
48a22d91b3 | ||
|
|
d39ce839d1 | ||
|
|
982bd905f3 | ||
|
|
e8adadd5d4 | ||
|
|
dea5465f9e | ||
|
|
c2e8598933 | ||
|
|
205b545182 | ||
|
|
a1f0e165fe | ||
|
|
9baf468ecb | ||
|
|
4433fe3355 | ||
|
|
3e9a8d9fcd | ||
|
|
0f1850cc1d | ||
|
|
ffe4e0f5a4 | ||
|
|
db53db48e5 | ||
|
|
869cc06e30 | ||
|
|
2dcb3f09c0 | ||
|
|
c6817bf70e | ||
|
|
b9eac83cb3 | ||
|
|
221273f1a0 | ||
|
|
2c70a870d9 | ||
|
|
e680a13d8a | ||
|
|
efaceea8c3 | ||
|
|
be471047f2 | ||
|
|
2d926e384c | ||
|
|
687c9e80c9 | ||
|
|
03d2c4963e | ||
|
|
835b765973 | ||
|
|
0f5f39d1bd | ||
|
|
4916249f72 | ||
|
|
1ec083d6c2 | ||
|
|
68b8da3446 | ||
|
|
460c32737d | ||
|
|
1bc450210a | ||
|
|
0b32bb4f6b | ||
|
|
d11a6ebe09 | ||
|
|
a592d243c6 | ||
|
|
f9e74d8a12 | ||
|
|
aa90bfdb4a | ||
|
|
0e3b487200 | ||
|
|
c3f81f3c70 | ||
|
|
0173564c24 | ||
|
|
5879c6d095 | ||
|
|
cc915f1055 | ||
|
|
79e92d9222 | ||
|
|
b54214277f | ||
|
|
aab566f9b9 | ||
|
|
8505446ea8 | ||
|
|
9aaa4edda1 | ||
|
|
9d79e8111a | ||
|
|
035c096da9 | ||
|
|
c8a93e6317 | ||
|
|
94f7da0e5e | ||
|
|
e7ab8753d2 | ||
|
|
cc80517d02 | ||
|
|
e77da9e2ce | ||
|
|
40ee4013d4 | ||
|
|
920960252d | ||
|
|
947571e214 | ||
|
|
80e4c01b2c | ||
|
|
c99d0326b3 | ||
|
|
e2abb7ab4d | ||
|
|
b6a390dd9e | ||
|
|
d7c2c62dba | ||
|
|
3fdb073fc2 | ||
|
|
836f7c1d2c | ||
|
|
6d06a1471b | ||
|
|
38b658648e | ||
|
|
ea2a98d92d | ||
|
|
41665c1317 | ||
|
|
9cb7957607 | ||
|
|
e12c350455 | ||
|
|
bccc2df797 | ||
|
|
4fdd8bf833 | ||
|
|
37237a7fc4 | ||
|
|
86474dd18d | ||
|
|
4031128717 | ||
|
|
26f20bd8e5 | ||
|
|
ab45e381e7 | ||
|
|
dc67f3ea65 | ||
|
|
8aa8d541b3 | ||
|
|
c85145a2a8 | ||
|
|
3ac79f29ba | ||
|
|
153063cbe1 | ||
|
|
8dcea4d78c | ||
|
|
7292b5d6d1 | ||
|
|
c035825792 | ||
|
|
9895c6082d | ||
|
|
d32f9c5864 | ||
|
|
2fa0a0bd52 | ||
|
|
38df8ca0d7 | ||
|
|
aaba3405b9 | ||
|
|
e8d28de5e6 | ||
|
|
cda275e884 | ||
|
|
ec36711924 | ||
|
|
4f40061b93 | ||
|
|
7bc82dbefd | ||
|
|
112a85b2ee | ||
|
|
490e9106f9 | ||
|
|
270758d5b0 | ||
|
|
83b9463643 | ||
|
|
61e771dcae | ||
|
|
36561293dd | ||
|
|
09863d3dfd | ||
|
|
ead17bf12a | ||
|
|
686a5820a0 | ||
|
|
75cdaea7e2 | ||
|
|
b97ab76eae |
57
.circleci/config.yml
Normal file
57
.circleci/config.yml
Normal file
@@ -0,0 +1,57 @@
|
||||
version: 2
|
||||
|
||||
jobs:
|
||||
build:
|
||||
environment:
|
||||
- BOOST_LIBRARY=config
|
||||
- CXX_STANDARD=gnu++11
|
||||
docker:
|
||||
- image: gcc:7
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Setting up Environment
|
||||
command: |
|
||||
echo 'export BOOST="$HOME/boost-local"' >> $BASH_ENV
|
||||
if [ $CIRCLE_BRANCH = "master" ]; then
|
||||
echo 'export BOOST_BRANCH="master"' >> $BASH_ENV;
|
||||
else
|
||||
echo 'export BOOST_BRANCH="develop"' >> $BASH_ENV;
|
||||
fi
|
||||
echo 'export BOOST_REMOVE="$BOOST/boost/libs/$BOOST_LIBRARY"' >> $BASH_ENV
|
||||
HOME_SED_=$(echo $HOME | sed -e 's/\//\\\//g')
|
||||
echo 'export HOME_SED=$HOME_SED_' >> $BASH_ENV
|
||||
- run:
|
||||
name: install pre dependencies
|
||||
command: |
|
||||
apt-get update -yqq
|
||||
apt-get install git xsltproc docbook-xsl docbook-xml -y
|
||||
- run:
|
||||
name: Initializing git repo for boost
|
||||
command: |
|
||||
echo BOOST=$BOOST BOOST_REMOVE=$BOOST_REMOVE BOOST_LIBRARY=$BOOST_LIBRARY BOOST_BRANCH=$BOOST_BRANCH PWD=$PWD
|
||||
mkdir $BOOST
|
||||
cd $BOOST
|
||||
git clone --single-branch --branch $BOOST_BRANCH https://github.com/boostorg/boost.git
|
||||
cd boost
|
||||
git submodule update --init --merge
|
||||
rm -rf $BOOST_REMOVE
|
||||
mv $HOME/project $BOOST_REMOVE
|
||||
- run:
|
||||
name: Bootstrapping boost-build
|
||||
command: |
|
||||
cd $BOOST/boost && ./bootstrap.sh && ./b2 headers
|
||||
echo "using xsltproc ;" | tee $HOME/user-config.jam
|
||||
echo "using boostbook : /usr/share/xml/docbook/stylesheet/docbook-xsl : /usr/share/sgml/docbook/dtd/xml/4.2 ;" | tee -a $HOME/user-config.jam
|
||||
- run:
|
||||
name: Building inspect
|
||||
command: |
|
||||
cd $BOOST/boost/tools/inspect/build && ../../../b2 -j2 address-model=64 architecture=x86 toolset=gcc cxxflags="-std=gnu++14" release dist-bin
|
||||
- run:
|
||||
name: Building docs
|
||||
command: |
|
||||
cd $BOOST_REMOVE/doc && rm -rf html && ../../../b2 -j2 address-model=64 architecture=x86 toolset=gcc cxxflags="-std=gnu++14" release
|
||||
- run:
|
||||
name: Running Inspect
|
||||
command: |
|
||||
cd $BOOST_REMOVE && ../../dist/bin/inspect -text -license -copyright -crlf -end -link -path_name -tab -ascii -apple_macro -assert_macro -minmax -unnamed
|
||||
@@ -88,6 +88,15 @@ matrix:
|
||||
sources:
|
||||
- ubuntu-toolchain-r-test
|
||||
|
||||
- os: linux
|
||||
env: TOOLSET=gcc COMPILER=g++-5 CXXSTD=03,11,14,1z CXXSTD_DIALECT=cxxstd-dialect=gnu
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- g++-5
|
||||
sources:
|
||||
- ubuntu-toolchain-r-test
|
||||
|
||||
- os: linux
|
||||
env: TOOLSET=gcc COMPILER=g++-6 CXXSTD=03,11,14,1z
|
||||
addons:
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
# Copyright 2018 Mike Dev
|
||||
# Copyright 2019 Peter Dimov
|
||||
# Distributed under 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
|
||||
#
|
||||
@@ -9,13 +10,25 @@
|
||||
#
|
||||
# IT IS HIGHLY LIKELY THAT THIS FILE WILL CHANGE WITHOUT NOTICE!!!
|
||||
#
|
||||
# DO NOT REPLY ON THE CONTENTS OF THIS FILE!!!
|
||||
# DO NOT RELY ON THE CONTENTS OF THIS FILE!!!
|
||||
#
|
||||
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
project(BoostConfig LANGUAGES CXX)
|
||||
# We support CMake 3.5, but prefer 3.16 policies and behavior
|
||||
cmake_minimum_required(VERSION 3.5...3.16)
|
||||
|
||||
project(boost_config VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
|
||||
|
||||
add_library(boost_config INTERFACE)
|
||||
add_library(Boost::config ALIAS boost_config)
|
||||
|
||||
target_include_directories(boost_config INTERFACE include)
|
||||
|
||||
# boost_install requires PROJECT_VERSION
|
||||
# Without the superproject, we don't have any, so skip installation
|
||||
|
||||
if(BOOST_SUPERPROJECT_VERSION)
|
||||
|
||||
include(BoostInstall)
|
||||
boost_install(TARGETS boost_config HEADER_DIRECTORY include/)
|
||||
|
||||
endif()
|
||||
|
||||
@@ -38,3 +38,5 @@ You can either run all the tests listed in `Jamfile.v2` or run a single test:
|
||||
../../../b2 <- run all tests
|
||||
../../../b2 config_info <- single test
|
||||
|
||||
### For developers ###
|
||||
Please check the [Guidelines for Boost Authors](http://www.boost.org/doc/libs/release/libs/config/doc/html/boost_config/guidelines_for_boost_authors.html). from the full documentation.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# *** DO NOT EDIT THIS FILE BY HAND ***
|
||||
# This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
# This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
# by libs/config/tools/generate.cpp
|
||||
# Copyright John Maddock.
|
||||
# Use, modification and distribution are subject to the
|
||||
@@ -69,6 +69,7 @@ obj cxx11_alignas : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ALIGNAS ;
|
||||
obj cxx11_allocator : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ALLOCATOR ;
|
||||
obj cxx11_atomic_smart_ptr : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ATOMIC_SMART_PTR ;
|
||||
obj cxx11_defaulted_moves : test_case.cpp : <define>TEST_BOOST_NO_CXX11_DEFAULTED_MOVES ;
|
||||
obj cxx11_hdr_exception : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_EXCEPTION ;
|
||||
obj cxx11_final : test_case.cpp : <define>TEST_BOOST_NO_CXX11_FINAL ;
|
||||
obj cxx11_hdr_array : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_ARRAY ;
|
||||
obj cxx11_hdr_atomic : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_ATOMIC ;
|
||||
@@ -92,6 +93,7 @@ obj cxx11_hdr_unordered_set : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_UN
|
||||
obj cxx11_inline_namespaces : test_case.cpp : <define>TEST_BOOST_NO_CXX11_INLINE_NAMESPACES ;
|
||||
obj cxx11_non_public_defaulted_functions : test_case.cpp : <define>TEST_BOOST_NO_CXX11_NON_PUBLIC_DEFAULTED_FUNCTIONS ;
|
||||
obj cxx11_numeric_limits : test_case.cpp : <define>TEST_BOOST_NO_CXX11_NUMERIC_LIMITS ;
|
||||
obj cxx11_override : test_case.cpp : <define>TEST_BOOST_NO_CXX11_OVERRIDE ;
|
||||
obj cxx11_pointer_traits : test_case.cpp : <define>TEST_BOOST_NO_CXX11_POINTER_TRAITS ;
|
||||
obj cxx11_ref_qualifiers : test_case.cpp : <define>TEST_BOOST_NO_CXX11_REF_QUALIFIERS ;
|
||||
obj cxx11_sfinae_expr : test_case.cpp : <define>TEST_BOOST_NO_CXX11_SFINAE_EXPR ;
|
||||
@@ -200,6 +202,7 @@ obj typeid : test_case.cpp : <define>TEST_BOOST_NO_TYPEID ;
|
||||
obj typename_with_ctor : test_case.cpp : <define>TEST_BOOST_NO_TYPENAME_WITH_CTOR ;
|
||||
obj cxx11_unicode_literals : test_case.cpp : <define>TEST_BOOST_NO_CXX11_UNICODE_LITERALS ;
|
||||
obj cxx11_unified_initialization_syntax : test_case.cpp : <define>TEST_BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX ;
|
||||
obj cxx11_unrestricted_union : test_case.cpp : <define>TEST_BOOST_NO_CXX11_UNRESTRICTED_UNION ;
|
||||
obj boost_function_scope_using_declaration_breaks_adl : test_case.cpp : <define>TEST_BOOST_FUNCTION_SCOPE_USING_DECLARATION_BREAKS_ADL ;
|
||||
obj using_declaration_overloads_from_typename_base : test_case.cpp : <define>TEST_BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE ;
|
||||
obj using_template : test_case.cpp : <define>TEST_BOOST_NO_USING_TEMPLATE ;
|
||||
|
||||
@@ -6,6 +6,6 @@
|
||||
// accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#if !((defined(__mips) && __mips == 1) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
|
||||
#if !(defined(__mips) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
|
||||
#error "Not MIPS1"
|
||||
#endif
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
// riscv.cpp
|
||||
//
|
||||
// Copyright Andreas Schwab 2019
|
||||
// Distributed under 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)
|
||||
|
||||
@@ -12,9 +12,7 @@ rule requires ( names + )
|
||||
local result ;
|
||||
for name in $(names)
|
||||
{
|
||||
local msg = "Boost.Config Feature Check: " ;
|
||||
msg += $(name) ;
|
||||
result += [ check-target-builds $(config-binding:D)//$(name) $(msg:J=) : : <build>no ] ;
|
||||
result += [ check-target-builds $(config-binding:D)//$(name) $(name) : : <build>no ] ;
|
||||
}
|
||||
return $(result) ;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:38 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// Use, modification and distribution are subject to the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// This file was automatically generated on Sun Apr 21 09:13:03 2019
|
||||
// This file was automatically generated on Mon Dec 09 09:47:37 2019
|
||||
// by libs/config/tools/generate.cpp
|
||||
// Copyright John Maddock 2002-4.
|
||||
// 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