mirror of
https://github.com/boostorg/multiprecision.git
synced 2026-07-21 13:23:49 +00:00
Handle recent review comments
This commit is contained in:
+2
-2
@@ -1,7 +1,7 @@
|
||||
[/
|
||||
Copyright 2011 - 2024 John Maddock.
|
||||
Copyright 2011 - 2025 John Maddock.
|
||||
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.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[/
|
||||
Copyright 2021 - 2024 Fahad Syed.
|
||||
Copyright 2024 Christopher Kormanyos.
|
||||
Copyright 2021 - 2025 Fahad Syed.
|
||||
Copyright 2025 Christopher Kormanyos.
|
||||
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
@@ -22,7 +22,7 @@
|
||||
}} // namespaces
|
||||
|
||||
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`
|
||||
and acts as an entirely C++ header only floating-point number type.
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
[/
|
||||
Copyright 2011 - 2024 John Maddock.
|
||||
Copyright 2011 - 2025 John Maddock.
|
||||
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.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[/
|
||||
Copyright 2021 - 2024 Fahad Syed.
|
||||
Copyright 2024 Christopher Kormanyos.
|
||||
Copyright 2021 - 2025 Fahad Syed.
|
||||
Copyright 2025 Christopher Kormanyos.
|
||||
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(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)
|
||||
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
|
||||
the `cpp_double_fp_backend` types.
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[/
|
||||
Copyright 2011 - 2024 John Maddock.
|
||||
Copyright 2011 - 2025 John Maddock.
|
||||
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.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2023.
|
||||
// Copyright Christopher Kormanyos 2023 - 2025.
|
||||
// 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)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// 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 Janek Kozicki.
|
||||
// Copyright 2021 - 2025 Janek Kozicki.
|
||||
// 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)
|
||||
@@ -164,13 +164,13 @@ class cpp_double_fp_backend
|
||||
static_assert
|
||||
(
|
||||
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 == 53)
|
||||
|| (cpp_df_qf_detail::ccmath::numeric_limits<float_type>::digits == 64)
|
||||
|| (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>;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
|
||||
// Copyright Christopher Kormanyos 2002 - 2013.
|
||||
// Copyright 2011 - 2013 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2015.
|
||||
// Copyright 2011 - 2015 John Maddock.
|
||||
// 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)
|
||||
|
||||
@@ -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.
|
||||
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt.
|
||||
|
||||
@@ -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
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
|
||||
@@ -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
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright John Maddock 2019.
|
||||
// Copyright Christopher Kormanyos 2021 - 2024.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright John Maddock 2019.
|
||||
// Copyright Christopher Kormanyos 2021 - 2024.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2024.
|
||||
// Copyright Christopher Kormanyos 2024 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright John Maddock 2019.
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Copyright John Maddock 2019 - 2025.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// 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
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
# copyright John Maddock 2011
|
||||
# copyright John Maddock 2011 - 2025
|
||||
# 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.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// Copyright John Maddock 2012.
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Copyright John Maddock 2012 - 2025.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// Copyright John Maddock 2012.
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Copyright John Maddock 2012 - 2025.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
@@ -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.
|
||||
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2002 - 2011.
|
||||
// Copyright 2011 John Maddock. Distributed under the Boost
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Copyright 2011 - 2025 John Maddock. Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2002 - 2011.
|
||||
// Copyright 2011 John Maddock. Distributed under the Boost
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Copyright 2011 - 2025 John Maddock. Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
// Copyright John Maddock 2013.
|
||||
// Copyright Christopher Kormanyos 2023 - 2024.
|
||||
// Copyright John Maddock 2013 - 2025.
|
||||
// Copyright Christopher Kormanyos 2023 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2002 - 2011.
|
||||
// Copyright 2011 John Maddock. Distributed under the Boost
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Copyright 2011 - 2025 John Maddock. Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2002 - 2011.
|
||||
// Copyright 2011 John Maddock. Distributed under the Boost
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Copyright 2011 - 2025 John Maddock. Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2002 - 2011.
|
||||
// Copyright 2011 John Maddock. Distributed under the Boost
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Copyright 2011 - 2025 John Maddock. Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2002 - 2011.
|
||||
// Copyright 2011 John Maddock. Distributed under the Boost
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Copyright 2011 - 2025 John Maddock. Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
@@ -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
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include "setup.hpp"
|
||||
#include "table_type.hpp"
|
||||
|
||||
@@ -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
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include "setup.hpp"
|
||||
#include "table_type.hpp"
|
||||
|
||||
@@ -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
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include "setup.hpp"
|
||||
#include "table_type.hpp"
|
||||
|
||||
@@ -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
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include "setup.hpp"
|
||||
#include "table_type.hpp"
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -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
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2012 John Maddock.
|
||||
// Copyright 2021 - 2024 Christopher Kormanyos.
|
||||
// Copyright 2021 - 2025 Christopher Kormanyos.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2024.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Copyright John Maddock 2016.
|
||||
// Copyright Christopher Kormanyos 2016, 2021 - 2023.
|
||||
// Copyright John Maddock 2016.
|
||||
// Copyright Christopher Kormanyos 2016 - 2025.
|
||||
// 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)
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2021 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Copyright 2021 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2021 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Copyright 2021 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Copyright 2021 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Copyright 2021 - 2025 John Maddock.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2012 John Maddock.
|
||||
// Copyright 2023 Christopher Kormanyos.
|
||||
// Copyright 2023 - 2025 Christopher Kormanyos.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2024.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
// Copyright John Maddock 2011.
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0.
|
||||
// (See accompanying file LICENSE_1_0.txt
|
||||
// or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define _SCL_SECURE_NO_WARNINGS
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// Copyright John Maddock 2006.
|
||||
// Copyright John Maddock 2006 - 2025.
|
||||
// Copyright Paul A. Bristow 2007
|
||||
// Copyright Christopher Kormanyos 2023
|
||||
// Copyright Christopher Kormanyos 2023 - 2025
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright John Maddock 2011.
|
||||
// Copyright Christopher Kormanyos 2023.
|
||||
// Copyright John Maddock 2011 - 2025.
|
||||
// Copyright Christopher Kormanyos 2023 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2021 - 2024.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2021 - 2023.
|
||||
// Copyright Christopher Kormanyos 2021 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
// (C) Copyright John Maddock 2007.
|
||||
// (C) Copyright Christopher Kormanyos 2023.
|
||||
// (C) Copyright John Maddock 2007 - 2025.
|
||||
// (C) Copyright Christopher Kormanyos 2023 - 2025.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
@@ -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
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2011 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2011, 2021 - 2023.
|
||||
// Copyright 2011 - 2025 John Maddock.
|
||||
// Copyright Christopher Kormanyos 2002 - 2025.
|
||||
// Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2023 - 2024 Matt Borland
|
||||
// Copyright 2023 - 2025 Matt Borland
|
||||
// Copyright 2023 - 2025 Christopher Kormanyos
|
||||
// Distributed under the Boost Software License, Version 1.0.
|
||||
// https://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
Reference in New Issue
Block a user