mirror of
https://github.com/boostorg/config.git
synced 2026-03-07 06:14:04 +01:00
Compare commits
78 Commits
boost-1.72
...
boost-1.74
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
83fd6b3e9d | ||
|
|
ab7bb5c511 | ||
|
|
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 |
@@ -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()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# *** DO NOT EDIT THIS FILE BY HAND ***
|
||||
# This file was automatically generated on Fri Aug 23 11:11:12 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
|
||||
@@ -93,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 ;
|
||||
@@ -201,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,4 +1,4 @@
|
||||
// This file was automatically generated on Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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 Fri Aug 23 11:11:12 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
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user