Handle recent review comments

This commit is contained in:
ckormanyos
2025-06-19 13:28:31 +02:00
parent 6b8ed7c5b3
commit 748b7511ae
60 changed files with 126 additions and 108 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
[/ [/
Copyright 2011 - 2024 John Maddock. Copyright 2011 - 2025 John Maddock.
Copyright 2013 - 2019 Paul A. Bristow. Copyright 2013 - 2019 Paul A. Bristow.
Copyright 2013 - 2024 Christopher Kormanyos. Copyright 2013 - 2025 Christopher Kormanyos.
Distributed under the Boost Software License, Version 1.0. Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at (See accompanying file LICENSE_1_0.txt or copy at
+3 -3
View File
@@ -1,6 +1,6 @@
[/ [/
Copyright 2021 - 2024 Fahad Syed. Copyright 2021 - 2025 Fahad Syed.
Copyright 2024 Christopher Kormanyos. Copyright 2025 Christopher Kormanyos.
Distributed under the Boost Software License, Version 1.0. Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at (See accompanying file LICENSE_1_0.txt or copy at
@@ -22,7 +22,7 @@
}} // namespaces }} // namespaces
The `cpp_double_fp_backend` back-end is the sum of two IEEE floating-point numbers The `cpp_double_fp_backend` back-end is the sum of two IEEE floating-point numbers
combined to create a type having rougly twice the composite width of one of its parts. combined to create a type having roughly twice the composite width of one of its parts.
The `cpp_double_fp_backend` back-end is used in conjunction with `number` The `cpp_double_fp_backend` back-end is used in conjunction with `number`
and acts as an entirely C++ header only floating-point number type. and acts as an entirely C++ header only floating-point number type.
+2 -2
View File
@@ -1,7 +1,7 @@
[/ [/
Copyright 2011 - 2024 John Maddock. Copyright 2011 - 2025 John Maddock.
Copyright 2013 - 2019 Paul A. Bristow. Copyright 2013 - 2019 Paul A. Bristow.
Copyright 2013 - 2024 Christopher Kormanyos. Copyright 2013 - 2025 Christopher Kormanyos.
Distributed under the Boost Software License, Version 1.0. Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at (See accompanying file LICENSE_1_0.txt or copy at
+3 -3
View File
@@ -1,6 +1,6 @@
[/ [/
Copyright 2021 - 2024 Fahad Syed. Copyright 2021 - 2025 Fahad Syed.
Copyright 2024 Christopher Kormanyos. Copyright 2025 Christopher Kormanyos.
Distributed under the Boost Software License, Version 1.0. Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at (See accompanying file LICENSE_1_0.txt or copy at
@@ -54,7 +54,7 @@ The types still do, however, support infinities, NaNs and (of course) zeros.
Signed negative zero, however, is not supported (in favor of efficiency) Signed negative zero, however, is not supported (in favor of efficiency)
and all zeros are treated as positive. and all zeros are treated as positive.
The `cpp_double_fp_backend` types inoteroperate with Boost.Math and Boost.Math.Constants. The `cpp_double_fp_backend` types interoperate with Boost.Math and Boost.Math.Constants.
This offers the wealth of Boost-related mathematical tools instantiated with This offers the wealth of Boost-related mathematical tools instantiated with
the `cpp_double_fp_backend` types. the `cpp_double_fp_backend` types.
+2 -2
View File
@@ -1,7 +1,7 @@
[/ [/
Copyright 2011 - 2024 John Maddock. Copyright 2011 - 2025 John Maddock.
Copyright 2013 - 2019 Paul A. Bristow. Copyright 2013 - 2019 Paul A. Bristow.
Copyright 2013 - 2024 Christopher Kormanyos. Copyright 2013 - 2025 Christopher Kormanyos.
Distributed under the Boost Software License, Version 1.0. Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at (See accompanying file LICENSE_1_0.txt or copy at
+1 -1
View File
@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2023. // Copyright Christopher Kormanyos 2023 - 2025.
// Distributed under the Boost Software License, Version 1.0. // Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at // (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
+1 -1
View File
@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright Christopher Kormanyos 2021 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
@@ -1,7 +1,7 @@
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// Copyright 2021 Fahad Syed. // Copyright 2021 - 2025 Fahad Syed.
// Copyright 2021 - 2025 Christopher Kormanyos. // Copyright 2021 - 2025 Christopher Kormanyos.
// Copyright 2021 Janek Kozicki. // Copyright 2021 - 2025 Janek Kozicki.
// Distributed under the Boost Software License, Version 1.0. // Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at // (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
@@ -164,13 +164,13 @@ class cpp_double_fp_backend
static_assert static_assert
( (
cpp_df_qf_detail::is_floating_point<float_type>::value cpp_df_qf_detail::is_floating_point<float_type>::value
&& ( && bool
{
(cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 24) (cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 24)
|| (cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 53) || (cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 53)
|| (cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 64) || (cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 64)
|| (cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 113) || (cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 113)
), }, "Error: float_type does not fulfil the backend requirements of cpp_double_fp_backend"
"Error: float_type does not fulfil the backend requirements of cpp_double_fp_backend"
); );
using rep_type = cpp_df_qf_detail::pair<float_type, float_type>; using rep_type = cpp_df_qf_detail::pair<float_type, float_type>;
@@ -1,6 +1,6 @@
// Copyright Christopher Kormanyos 2002 - 2013. // Copyright Christopher Kormanyos 2002 - 2015.
// Copyright 2011 - 2013 John Maddock. // Copyright 2011 - 2015 John Maddock.
// Distributed under the Boost Software License, Version 1.0. // Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at // (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
+2 -1
View File
@@ -1,4 +1,5 @@
# copyright John Maddock 2012 # copyright John Maddock 2012 - 2025
# copyright Christopher Kormanyos 2021 - 2025
# Distributed under the Boost Software License, Version 1.0. # Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at # (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt. # http://www.boost.org/LICENSE_1_0.txt.
+3 -1
View File
@@ -1,5 +1,7 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011-21 John Maddock. Distributed under the Boost // Copyright 2011-25 John Maddock.
// Copyright 2021-25 Christopher Kormanyos.
// Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+3 -1
View File
@@ -1,5 +1,7 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011-9 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock.
// Copyright 2021 - 2025 Christopher Kormanyos.
// Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+1 -1
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright John Maddock 2019. // Copyright John Maddock 2019.
// Copyright Christopher Kormanyos 2021 - 2024. // Copyright Christopher Kormanyos 2021 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+1 -1
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright John Maddock 2019. // Copyright John Maddock 2019.
// Copyright Christopher Kormanyos 2021 - 2024. // Copyright Christopher Kormanyos 2021 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+1 -1
View File
@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2024. // Copyright Christopher Kormanyos 2024 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright John Maddock 2019. // Copyright John Maddock 2019 - 2025.
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright Christopher Kormanyos 2021 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright John Maddock 2019 - 2024. // Copyright John Maddock 2019 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+1 -1
View File
@@ -1,4 +1,4 @@
# copyright John Maddock 2011 # copyright John Maddock 2011 - 2025
# Distributed under the Boost Software License, Version 1.0. # Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at # (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt. # http://www.boost.org/LICENSE_1_0.txt.
+2 -2
View File
@@ -1,5 +1,5 @@
// Copyright John Maddock 2012. // Copyright John Maddock 2012 - 2025.
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright Christopher Kormanyos 2021 - 2025.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+2 -2
View File
@@ -1,5 +1,5 @@
// Copyright John Maddock 2012. // Copyright John Maddock 2012 - 2025.
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright Christopher Kormanyos 2021 - 2025.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+2 -1
View File
@@ -1,4 +1,5 @@
# copyright John Maddock 2013 # copyright John Maddock 2013 - 2025
# copyright Christopher Kormanyos 2021 - 2025
# Distributed under the Boost Software License, Version 1.0. # Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at # (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt. # http://www.boost.org/LICENSE_1_0.txt.
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2002 - 2011. // Copyright Christopher Kormanyos 2002 - 2025.
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
// //
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2002 - 2011. // Copyright Christopher Kormanyos 2002 - 2025.
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
// //
+2 -2
View File
@@ -1,5 +1,5 @@
// Copyright John Maddock 2013. // Copyright John Maddock 2013 - 2025.
// Copyright Christopher Kormanyos 2023 - 2024. // Copyright Christopher Kormanyos 2023 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2002 - 2011. // Copyright Christopher Kormanyos 2002 - 2025.
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
// //
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2002 - 2011. // Copyright Christopher Kormanyos 2002 - 2025.
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
// //
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2002 - 2011. // Copyright Christopher Kormanyos 2002 - 2025.
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
// //
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2002 - 2011. // Copyright Christopher Kormanyos 2002 - 2025.
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
// //
+3 -1
View File
@@ -1,7 +1,9 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Copyright Christopher Kormanyos 2021 - 2025.
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
//
#include "setup.hpp" #include "setup.hpp"
#include "table_type.hpp" #include "table_type.hpp"
+3 -1
View File
@@ -1,7 +1,9 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Copyright Christopher Kormanyos 2021 - 2025.
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
//
#include "setup.hpp" #include "setup.hpp"
#include "table_type.hpp" #include "table_type.hpp"
+3 -1
View File
@@ -1,7 +1,9 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Copyright Christopher Kormanyos 2021 - 2025.
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
//
#include "setup.hpp" #include "setup.hpp"
#include "table_type.hpp" #include "table_type.hpp"
+3 -1
View File
@@ -1,7 +1,9 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. Distributed under the Boost // Copyright 2011 - 2025 John Maddock. Distributed under the Boost
// Copyright Christopher Kormanyos 2021 - 2025.
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
//
#include "setup.hpp" #include "setup.hpp"
#include "table_type.hpp" #include "table_type.hpp"
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+3 -1
View File
@@ -1,5 +1,7 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2012 John Maddock. Distributed under the Boost // Copyright 2012 - 2025 John Maddock.
// Copyright 2021 - 2025 Christopher Kormanyos.
// Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+1 -1
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2012 John Maddock. // Copyright 2012 John Maddock.
// Copyright 2021 - 2024 Christopher Kormanyos. // Copyright 2021 - 2025 Christopher Kormanyos.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2024. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// Copyright John Maddock 2016. // Copyright John Maddock 2016.
// Copyright Christopher Kormanyos 2016, 2021 - 2023. // Copyright Christopher Kormanyos 2016 - 2025.
// Distributed under the Boost Software License, // Distributed under the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt // Version 1.0. (See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt) // or copy at http://www.boost.org/LICENSE_1_0.txt)
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2021 John Maddock. // Copyright 2021 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright Christopher Kormanyos 2021 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2021 John Maddock. // Copyright 2021 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright Christopher Kormanyos 2021 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright Christopher Kormanyos 2021 - 2025.
// Copyright 2021 John Maddock. // Copyright 2021 - 2025 John Maddock.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+1 -1
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2012 John Maddock. // Copyright 2012 John Maddock.
// Copyright 2023 Christopher Kormanyos. // Copyright 2023 - 2025 Christopher Kormanyos.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2024. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+7 -6
View File
@@ -1,9 +1,10 @@
// Copyright John Maddock 2011. ///////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright 2011 - 2025 John Maddock.
// Use, modification and distribution are subject to the // Copyright Christopher Kormanyos 2002 - 2025.
// Boost Software License, Version 1.0. // Distributed under the Boost
// (See accompanying file LICENSE_1_0.txt // Software License, Version 1.0. (See accompanying file
// or copy at http://www.boost.org/LICENSE_1_0.txt) // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
//
#ifdef _MSC_VER #ifdef _MSC_VER
#define _SCL_SECURE_NO_WARNINGS #define _SCL_SECURE_NO_WARNINGS
+2 -2
View File
@@ -1,6 +1,6 @@
// Copyright John Maddock 2006. // Copyright John Maddock 2006 - 2025.
// Copyright Paul A. Bristow 2007 // Copyright Paul A. Bristow 2007
// Copyright Christopher Kormanyos 2023 // Copyright Christopher Kormanyos 2023 - 2025
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright John Maddock 2011. // Copyright John Maddock 2011 - 2025.
// Copyright Christopher Kormanyos 2023. // Copyright Christopher Kormanyos 2023 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2021 - 2024. // Copyright Christopher Kormanyos 2021 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+1 -1
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 John Maddock.
// Copyright Christopher Kormanyos 2021 - 2023. // Copyright Christopher Kormanyos 2021 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,5 +1,5 @@
// (C) Copyright John Maddock 2007. // (C) Copyright John Maddock 2007 - 2025.
// (C) Copyright Christopher Kormanyos 2023. // (C) Copyright Christopher Kormanyos 2023 - 2025.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+2 -1
View File
@@ -1,4 +1,5 @@
// (C) Copyright John Maddock 2016. // (C) Copyright John Maddock 2016 - 2025.
// (C) Copyright Christopher Kormanyos 2021 - 2025
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file // Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+2 -2
View File
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. // Copyright 2011 - 2025 John Maddock.
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023. // Copyright Christopher Kormanyos 2002 - 2025.
// Distributed under the Boost // Distributed under the Boost
// Software License, Version 1.0. (See accompanying file // Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
+1 -1
View File
@@ -1,4 +1,4 @@
// Copyright 2023 - 2024 Matt Borland // Copyright 2023 - 2025 Matt Borland
// Copyright 2023 - 2025 Christopher Kormanyos // Copyright 2023 - 2025 Christopher Kormanyos
// Distributed under the Boost Software License, Version 1.0. // Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt // https://www.boost.org/LICENSE_1_0.txt