diff --git a/.github/workflows/wide_integer_codecov.yml b/.github/workflows/wide_integer_codecov.yml index 13022880..7ae6d674 100644 --- a/.github/workflows/wide_integer_codecov.yml +++ b/.github/workflows/wide_integer_codecov.yml @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------ -# Copyright Christopher Kormanyos 2022 - 2023. +# Copyright Christopher Kormanyos 2022 - 2024. # 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) diff --git a/.github/workflows/wide_integer_sonar.yml b/.github/workflows/wide_integer_sonar.yml index 3c44f2cb..770dc030 100644 --- a/.github/workflows/wide_integer_sonar.yml +++ b/.github/workflows/wide_integer_sonar.yml @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------ -# Copyright Christopher Kormanyos 2022 - 2023. +# Copyright Christopher Kormanyos 2022 - 2024. # 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) diff --git a/boost/multiprecision/uintwide_t_backend.hpp b/boost/multiprecision/uintwide_t_backend.hpp index 931a288f..d2432274 100644 --- a/boost/multiprecision/uintwide_t_backend.hpp +++ b/boost/multiprecision/uintwide_t_backend.hpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2022. // +// Copyright Christopher Kormanyos 2019 - 2024. // // 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) // diff --git a/examples/build/test_examples.sh b/examples/build/test_examples.sh index ee753507..bb10183c 100755 --- a/examples/build/test_examples.sh +++ b/examples/build/test_examples.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright Christopher Kormanyos 2020 - 2023. +# Copyright Christopher Kormanyos 2020 - 2024. # 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) diff --git a/examples/example000_numeric_limits.cpp b/examples/example000_numeric_limits.cpp index c8cfd175..7b2d17a2 100644 --- a/examples/example000_numeric_limits.cpp +++ b/examples/example000_numeric_limits.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2022. // +// Copyright Christopher Kormanyos 2021 - 2024. // // 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) // diff --git a/examples/example000a_builtin_convert.cpp b/examples/example000a_builtin_convert.cpp index 96df40f0..7a8ffd62 100644 --- a/examples/example000a_builtin_convert.cpp +++ b/examples/example000a_builtin_convert.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2022. // +// Copyright Christopher Kormanyos 2021 - 2024. // // 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) // diff --git a/examples/example001_mul_div.cpp b/examples/example001_mul_div.cpp index 00d8690c..97335783 100644 --- a/examples/example001_mul_div.cpp +++ b/examples/example001_mul_div.cpp @@ -9,11 +9,11 @@ #include #if (defined(__GNUC__) && defined(__AVR__) && (__GNUC__ < 10)) -#define WIDE_INTEGER_EXAMPLE001_CONSTEXPR_OR_CONST const -#define WIDE_INTEGER_EXAMPLE001_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 0 +#define WIDE_INTEGER_EXAMPLE001_CONSTEXPR_OR_CONST const // NOLINT(cppcoreguidelines-macro-usage) +#define WIDE_INTEGER_EXAMPLE001_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 0 // NOLINT(cppcoreguidelines-macro-usage) #else -#define WIDE_INTEGER_EXAMPLE001_CONSTEXPR_OR_CONST constexpr -#define WIDE_INTEGER_EXAMPLE001_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 1 +#define WIDE_INTEGER_EXAMPLE001_CONSTEXPR_OR_CONST constexpr // NOLINT(cppcoreguidelines-macro-usage) +#define WIDE_INTEGER_EXAMPLE001_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 1 // NOLINT(cppcoreguidelines-macro-usage) #endif #if defined(WIDE_INTEGER_NAMESPACE) diff --git a/examples/example002_shl_shr.cpp b/examples/example002_shl_shr.cpp index 5666174a..4964f0f1 100644 --- a/examples/example002_shl_shr.cpp +++ b/examples/example002_shl_shr.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2022. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example003_sqrt.cpp b/examples/example003_sqrt.cpp index b442e7fa..016b8432 100644 --- a/examples/example003_sqrt.cpp +++ b/examples/example003_sqrt.cpp @@ -9,11 +9,11 @@ #include #if (defined(__GNUC__) && defined(__AVR__) && (__GNUC__ < 10)) -#define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST const -#define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 0 +#define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST const // NOLINT(cppcoreguidelines-macro-usage) +#define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 0 // NOLINT(cppcoreguidelines-macro-usage) #else -#define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST constexpr -#define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 1 +#define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_OR_CONST constexpr // NOLINT(cppcoreguidelines-macro-usage) +#define WIDE_INTEGER_EXAMPLE003_CONSTEXPR_IS_COMPILE_TIME_CONSTANT 1 // NOLINT(cppcoreguidelines-macro-usage) #endif #if defined(WIDE_INTEGER_NAMESPACE) diff --git a/examples/example003a_cbrt.cpp b/examples/example003a_cbrt.cpp index 0600c4e0..8a187892 100644 --- a/examples/example003a_cbrt.cpp +++ b/examples/example003a_cbrt.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2022. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example004_rootk_pow.cpp b/examples/example004_rootk_pow.cpp index cb5c16f1..e979270a 100644 --- a/examples/example004_rootk_pow.cpp +++ b/examples/example004_rootk_pow.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2022. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example005_powm.cpp b/examples/example005_powm.cpp index c8678064..9315d53a 100644 --- a/examples/example005_powm.cpp +++ b/examples/example005_powm.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2022. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example005a_pow_factors_of_p99.cpp b/examples/example005a_pow_factors_of_p99.cpp index e7e5d9bb..058c2a26 100644 --- a/examples/example005a_pow_factors_of_p99.cpp +++ b/examples/example005a_pow_factors_of_p99.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2022. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example006_gcd.cpp b/examples/example006_gcd.cpp index 0d01106d..5a66b258 100644 --- a/examples/example006_gcd.cpp +++ b/examples/example006_gcd.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2023. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example007_random_generator.cpp b/examples/example007_random_generator.cpp index 2b439295..ce481760 100644 --- a/examples/example007_random_generator.cpp +++ b/examples/example007_random_generator.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2022. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example008_miller_rabin_prime.cpp b/examples/example008_miller_rabin_prime.cpp index 6d99877a..ffa570b3 100644 --- a/examples/example008_miller_rabin_prime.cpp +++ b/examples/example008_miller_rabin_prime.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2023. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example008a_miller_rabin_prime.cpp b/examples/example008a_miller_rabin_prime.cpp index c1c22d80..cace64a6 100644 --- a/examples/example008a_miller_rabin_prime.cpp +++ b/examples/example008a_miller_rabin_prime.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2023. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example009_timed_mul.cpp b/examples/example009_timed_mul.cpp index a3bfc425..de326f76 100644 --- a/examples/example009_timed_mul.cpp +++ b/examples/example009_timed_mul.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2023. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example009a_timed_mul_4_by_4.cpp b/examples/example009a_timed_mul_4_by_4.cpp index adee3a36..c7ef5dc3 100644 --- a/examples/example009a_timed_mul_4_by_4.cpp +++ b/examples/example009a_timed_mul_4_by_4.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2023. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example009b_timed_mul_8_by_8.cpp b/examples/example009b_timed_mul_8_by_8.cpp index b0476e8c..6dbc585b 100644 --- a/examples/example009b_timed_mul_8_by_8.cpp +++ b/examples/example009b_timed_mul_8_by_8.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2023. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example010_uint48_t.cpp b/examples/example010_uint48_t.cpp index 9af8fafb..f4b7fb9b 100644 --- a/examples/example010_uint48_t.cpp +++ b/examples/example010_uint48_t.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2022. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example011_uint24_t.cpp b/examples/example011_uint24_t.cpp index e37ae2e2..8a703546 100644 --- a/examples/example011_uint24_t.cpp +++ b/examples/example011_uint24_t.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2018 - 2022. // +// Copyright Christopher Kormanyos 2018 - 2024. // // 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) // diff --git a/examples/example012_rsa_crypto.cpp b/examples/example012_rsa_crypto.cpp index 39ff8755..0e74f60c 100644 --- a/examples/example012_rsa_crypto.cpp +++ b/examples/example012_rsa_crypto.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2023. // +// Copyright Christopher Kormanyos 2021 - 2024. // // 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) // diff --git a/examples/example_uintwide_t.h b/examples/example_uintwide_t.h index 935988d0..d3f61ffa 100644 --- a/examples/example_uintwide_t.h +++ b/examples/example_uintwide_t.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2023. // +// Copyright Christopher Kormanyos 2021 - 2024. // // 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) // diff --git a/target/build/test_examples_emulator.py b/target/build/test_examples_emulator.py index cf217383..c179b7d3 100644 --- a/target/build/test_examples_emulator.py +++ b/target/build/test_examples_emulator.py @@ -6,7 +6,7 @@ # # Created: 02/04/2021 # -# Copyright: Copyright Christopher Kormanyos 2007 - 2022 +# Copyright: Copyright Christopher Kormanyos 2007 - 2024 # # Licence: Distributed under the Boost Software License, # Version 1.0. (See accompanying file LICENSE_1_0.txt diff --git a/target/micros/stm32f429/make/stm32f429.ld b/target/micros/stm32f429/make/stm32f429.ld index 97b16459..f3ffe3cc 100644 --- a/target/micros/stm32f429/make/stm32f429.ld +++ b/target/micros/stm32f429/make/stm32f429.ld @@ -1,6 +1,6 @@ /* - Copyright Christopher Kormanyos 2007 - 2022. + Copyright Christopher Kormanyos 2007 - 2024. 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) diff --git a/test/parallel_for.h b/test/parallel_for.h index beccf8e1..e16a9c4e 100644 --- a/test/parallel_for.h +++ b/test/parallel_for.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2017 - 2023. +// Copyright Christopher Kormanyos 2017 - 2024. // 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) diff --git a/test/test_uintwide_t.h b/test/test_uintwide_t.h index 0e28959f..232c7e82 100644 --- a/test/test_uintwide_t.h +++ b/test/test_uintwide_t.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2023. // +// Copyright Christopher Kormanyos 2019 - 2024. // // 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) // diff --git a/test/test_uintwide_t_boost_backend.cpp b/test/test_uintwide_t_boost_backend.cpp index d2285821..2bd34eba 100644 --- a/test/test_uintwide_t_boost_backend.cpp +++ b/test/test_uintwide_t_boost_backend.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2022. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_examples.cpp b/test/test_uintwide_t_examples.cpp index e0c66ea1..4dd31835 100644 --- a/test/test_uintwide_t_examples.cpp +++ b/test/test_uintwide_t_examples.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2023. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_float_convert.cpp b/test/test_uintwide_t_float_convert.cpp index 51ac8192..1d0db7ae 100644 --- a/test/test_uintwide_t_float_convert.cpp +++ b/test/test_uintwide_t_float_convert.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2023. +// Copyright Christopher Kormanyos 2021 - 2024. // 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) diff --git a/test/test_uintwide_t_int_convert.cpp b/test/test_uintwide_t_int_convert.cpp index 834aa888..65a4f0a9 100644 --- a/test/test_uintwide_t_int_convert.cpp +++ b/test/test_uintwide_t_int_convert.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2023. +// Copyright Christopher Kormanyos 2021 - 2024. // 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) diff --git a/test/test_uintwide_t_n_base.cpp b/test/test_uintwide_t_n_base.cpp index 3495da53..371f88b1 100644 --- a/test/test_uintwide_t_n_base.cpp +++ b/test/test_uintwide_t_n_base.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2022. +// Copyright Christopher Kormanyos 2021 - 2024. // 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) diff --git a/test/test_uintwide_t_n_base.h b/test/test_uintwide_t_n_base.h index f92b4b25..515ea8a2 100644 --- a/test/test_uintwide_t_n_base.h +++ b/test/test_uintwide_t_n_base.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2023. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_n_binary_ops_base.cpp b/test/test_uintwide_t_n_binary_ops_base.cpp index b9a0b280..b13df0c2 100644 --- a/test/test_uintwide_t_n_binary_ops_base.cpp +++ b/test/test_uintwide_t_n_binary_ops_base.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2022. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_n_binary_ops_base.h b/test/test_uintwide_t_n_binary_ops_base.h index bfad18ab..afeef20f 100644 --- a/test/test_uintwide_t_n_binary_ops_base.h +++ b/test/test_uintwide_t_n_binary_ops_base.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2022. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_n_binary_ops_mul_div_4_by_4_template.h b/test/test_uintwide_t_n_binary_ops_mul_div_4_by_4_template.h index 02d8fc4d..a35e5c67 100644 --- a/test/test_uintwide_t_n_binary_ops_mul_div_4_by_4_template.h +++ b/test/test_uintwide_t_n_binary_ops_mul_div_4_by_4_template.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2023. +// Copyright Christopher Kormanyos 2021 - 2024. // 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) diff --git a/test/test_uintwide_t_n_binary_ops_mul_n_by_m_template.h b/test/test_uintwide_t_n_binary_ops_mul_n_by_m_template.h index ab2aecf5..7626eb99 100644 --- a/test/test_uintwide_t_n_binary_ops_mul_n_by_m_template.h +++ b/test/test_uintwide_t_n_binary_ops_mul_n_by_m_template.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2022. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_n_binary_ops_template.h b/test/test_uintwide_t_n_binary_ops_template.h index 4fd79626..a5362e92 100644 --- a/test/test_uintwide_t_n_binary_ops_template.h +++ b/test/test_uintwide_t_n_binary_ops_template.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2023. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_n_binary_ops_template_signed.h b/test/test_uintwide_t_n_binary_ops_template_signed.h index e73106a2..4259e316 100644 --- a/test/test_uintwide_t_n_binary_ops_template_signed.h +++ b/test/test_uintwide_t_n_binary_ops_template_signed.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2021 - 2023. +// Copyright Christopher Kormanyos 2021 - 2024. // 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) diff --git a/test/test_uintwide_t_n_number_theory_funcs_template.h b/test/test_uintwide_t_n_number_theory_funcs_template.h index 34852c28..4fb16d86 100644 --- a/test/test_uintwide_t_n_number_theory_funcs_template.h +++ b/test/test_uintwide_t_n_number_theory_funcs_template.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2022. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_spot_values.cpp b/test/test_uintwide_t_spot_values.cpp index 286e2679..477d2a32 100644 --- a/test/test_uintwide_t_spot_values.cpp +++ b/test/test_uintwide_t_spot_values.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2019 - 2023. +// Copyright Christopher Kormanyos 2019 - 2024. // 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) diff --git a/test/test_uintwide_t_xtra_from_issue_335.cpp b/test/test_uintwide_t_xtra_from_issue_335.cpp index 270f2301..94cb076d 100644 --- a/test/test_uintwide_t_xtra_from_issue_335.cpp +++ b/test/test_uintwide_t_xtra_from_issue_335.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright Christopher Kormanyos 2022. +// Copyright Christopher Kormanyos 2022 - 2024. // 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)