From 18765018859d2f8e08b7b903d2ba44d78f81ffbc Mon Sep 17 00:00:00 2001 From: Daniel Frey Date: Wed, 1 Jan 2025 12:03:59 +0100 Subject: [PATCH] Welcome 2025 --- .clang-format | 2 +- .clang-tidy | 2 +- Makefile | 2 +- README.md | 2 +- doc/Aggregate-Support.md | 2 +- doc/Binary-Data.md | 2 +- doc/Bulk-Transfer.md | 2 +- doc/Connection-Pool.md | 2 +- doc/Connection.md | 2 +- doc/Error-Handling.md | 2 +- doc/Getting-Started.md | 2 +- doc/Installation.md | 2 +- doc/Large-Object.md | 2 +- doc/Parameter-Type-Conversion.md | 2 +- doc/Performance.md | 2 +- doc/Requirements.md | 2 +- doc/Result-Type-Conversion.md | 2 +- doc/Result.md | 2 +- doc/Statement.md | 2 +- doc/Transaction.md | 2 +- include/tao/pq.hpp | 2 +- include/tao/pq/access_mode.hpp | 2 +- include/tao/pq/binary.hpp | 2 +- include/tao/pq/bind.hpp | 2 +- include/tao/pq/connection.hpp | 2 +- include/tao/pq/connection_pool.hpp | 2 +- include/tao/pq/connection_status.hpp | 2 +- include/tao/pq/exception.hpp | 2 +- include/tao/pq/field.hpp | 2 +- include/tao/pq/internal/aggregate.hpp | 2 +- include/tao/pq/internal/demangle.hpp | 2 +- include/tao/pq/internal/exclusive_scan.hpp | 2 +- include/tao/pq/internal/format_as.hpp | 2 +- include/tao/pq/internal/from_chars.hpp | 2 +- include/tao/pq/internal/gen.hpp | 2 +- include/tao/pq/internal/parameter_traits_helper.hpp | 2 +- include/tao/pq/internal/poll.hpp | 2 +- include/tao/pq/internal/pool.hpp | 2 +- include/tao/pq/internal/resize_uninitialized.hpp | 2 +- include/tao/pq/internal/strtox.hpp | 2 +- include/tao/pq/internal/unreachable.hpp | 2 +- include/tao/pq/internal/zsv.hpp | 2 +- include/tao/pq/is_aggregate.hpp | 2 +- include/tao/pq/is_array.hpp | 2 +- include/tao/pq/isolation_level.hpp | 2 +- include/tao/pq/large_object.hpp | 2 +- include/tao/pq/log.hpp | 2 +- include/tao/pq/notification.hpp | 2 +- include/tao/pq/null.hpp | 2 +- include/tao/pq/oid.hpp | 2 +- include/tao/pq/parameter.hpp | 2 +- include/tao/pq/parameter_traits.hpp | 2 +- include/tao/pq/parameter_traits_aggregate.hpp | 2 +- include/tao/pq/parameter_traits_array.hpp | 2 +- include/tao/pq/parameter_traits_optional.hpp | 2 +- include/tao/pq/parameter_traits_pair.hpp | 2 +- include/tao/pq/parameter_traits_tuple.hpp | 2 +- include/tao/pq/pipeline.hpp | 2 +- include/tao/pq/pipeline_status.hpp | 2 +- include/tao/pq/poll.hpp | 2 +- include/tao/pq/result.hpp | 2 +- include/tao/pq/result_status.hpp | 2 +- include/tao/pq/result_traits.hpp | 2 +- include/tao/pq/result_traits_aggregate.hpp | 2 +- include/tao/pq/result_traits_array.hpp | 2 +- include/tao/pq/result_traits_optional.hpp | 2 +- include/tao/pq/result_traits_pair.hpp | 2 +- include/tao/pq/result_traits_tuple.hpp | 2 +- include/tao/pq/row.hpp | 2 +- include/tao/pq/table_field.hpp | 2 +- include/tao/pq/table_reader.hpp | 2 +- include/tao/pq/table_row.hpp | 2 +- include/tao/pq/table_writer.hpp | 2 +- include/tao/pq/transaction.hpp | 2 +- include/tao/pq/transaction_base.hpp | 2 +- include/tao/pq/transaction_status.hpp | 2 +- include/tao/pq/version.hpp | 2 +- src/lib/pq/connection.cpp | 2 +- src/lib/pq/connection_pool.cpp | 2 +- src/lib/pq/exception.cpp | 2 +- src/lib/pq/field.cpp | 2 +- src/lib/pq/internal/demangle.cpp | 2 +- src/lib/pq/internal/poll.cpp | 2 +- src/lib/pq/internal/strtox.cpp | 2 +- src/lib/pq/large_object.cpp | 2 +- src/lib/pq/parameter_traits.cpp | 2 +- src/lib/pq/pipeline.cpp | 2 +- src/lib/pq/result.cpp | 2 +- src/lib/pq/result_traits.cpp | 2 +- src/lib/pq/result_traits_array.cpp | 2 +- src/lib/pq/row.cpp | 2 +- src/lib/pq/table_field.cpp | 2 +- src/lib/pq/table_reader.cpp | 2 +- src/lib/pq/table_row.cpp | 2 +- src/lib/pq/table_writer.cpp | 2 +- src/lib/pq/transaction.cpp | 2 +- src/lib/pq/transaction_base.cpp | 2 +- src/test/compare.hpp | 2 +- src/test/getenv.hpp | 2 +- src/test/macros.hpp | 2 +- src/test/pq/aggregate.cpp | 2 +- src/test/pq/array.cpp | 2 +- src/test/pq/basic_datatypes.cpp | 2 +- src/test/pq/chunk_mode.cpp | 2 +- src/test/pq/connection.cpp | 2 +- src/test/pq/connection_pool.cpp | 2 +- src/test/pq/example.cpp | 2 +- src/test/pq/exception.cpp | 2 +- src/test/pq/getenv.cpp | 2 +- src/test/pq/large_object.cpp | 2 +- src/test/pq/log.cpp | 2 +- src/test/pq/notifications.cpp | 2 +- src/test/pq/parameter.cpp | 2 +- src/test/pq/parameter_type.cpp | 2 +- src/test/pq/password.cpp | 2 +- src/test/pq/pipeline_mode.cpp | 2 +- src/test/pq/resize_uninitialized.cpp | 2 +- src/test/pq/result.cpp | 2 +- src/test/pq/result_type.cpp | 2 +- src/test/pq/row.cpp | 2 +- src/test/pq/single_row_mode.cpp | 2 +- src/test/pq/strtox.cpp | 2 +- src/test/pq/table_reader.cpp | 2 +- src/test/pq/table_writer.cpp | 2 +- src/test/pq/traits.cpp | 2 +- src/test/pq/transaction.cpp | 2 +- 126 files changed, 126 insertions(+), 126 deletions(-) diff --git a/.clang-format b/.clang-format index 5eece0c..71aac94 100644 --- a/.clang-format +++ b/.clang-format @@ -1,7 +1,7 @@ # The Art of C++ # https://github.com/taocpp -# Copyright (c) 2016-2024 Dr. Colin Hirsch and Daniel Frey +# Copyright (c) 2016-2025 Dr. Colin Hirsch and Daniel Frey # 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) diff --git a/.clang-tidy b/.clang-tidy index b3148be..fc1c51e 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,7 +1,7 @@ # The Art of C++ # https://github.com/taocpp -# Copyright (c) 2016-2024 Dr. Colin Hirsch and Daniel Frey +# Copyright (c) 2016-2025 Dr. Colin Hirsch and Daniel Frey # 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) diff --git a/Makefile b/Makefile index ae63709..83f09ab 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # The Art of C++ # https://github.com/taocpp -# Copyright (c) 2016-2024 Daniel Frey +# Copyright (c) 2016-2025 Daniel Frey # 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) diff --git a/README.md b/README.md index 5af33ca..43fd8af 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ taoPQ is part of [The Art of C++](https://taocpp.github.io/). Open Source Initiative -Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch taoPQ is certified [Open Source➚](http://www.opensource.org/docs/definition.html) software. It is [licensed➚](https://pdimov.github.io/blog/2020/09/06/why-use-the-boost-license/) under the terms of the [Boost Software License, Version 1.0➚](https://www.boost.org/LICENSE_1_0.txt) reproduced here. diff --git a/doc/Aggregate-Support.md b/doc/Aggregate-Support.md index 405d279..e86663e 100644 --- a/doc/Aggregate-Support.md +++ b/doc/Aggregate-Support.md @@ -94,6 +94,6 @@ int main() This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Binary-Data.md b/doc/Binary-Data.md index b192305..198c455 100644 --- a/doc/Binary-Data.md +++ b/doc/Binary-Data.md @@ -53,6 +53,6 @@ In some cases other alternatives are offered, i.e. you may provide a buffer that This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Bulk-Transfer.md b/doc/Bulk-Transfer.md index e78fa7c..9bef5f6 100644 --- a/doc/Bulk-Transfer.md +++ b/doc/Bulk-Transfer.md @@ -248,6 +248,6 @@ namespace tao::pq This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Connection-Pool.md b/doc/Connection-Pool.md index e54cc23..40d8689 100644 --- a/doc/Connection-Pool.md +++ b/doc/Connection-Pool.md @@ -178,6 +178,6 @@ We minimized the work in the [critical sections➚](https://en.wikipedia.org/wik This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Connection.md b/doc/Connection.md index 611b2b0..1779678 100644 --- a/doc/Connection.md +++ b/doc/Connection.md @@ -411,6 +411,6 @@ When taoPQ throws an exception this is usually done internally and the message i This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Error-Handling.md b/doc/Error-Handling.md index e683294..cbaebf6 100644 --- a/doc/Error-Handling.md +++ b/doc/Error-Handling.md @@ -78,6 +78,6 @@ The same exception can also be thrown when calling the connection's `get_notific This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Getting-Started.md b/doc/Getting-Started.md index 60f7717..b79b4e0 100644 --- a/doc/Getting-Started.md +++ b/doc/Getting-Started.md @@ -67,6 +67,6 @@ The following chapters are good next steps to get to know taoPQ: This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Installation.md b/doc/Installation.md index 3b662fa..90b22e9 100644 --- a/doc/Installation.md +++ b/doc/Installation.md @@ -40,6 +40,6 @@ When executing the build step, taoPQ will be built first, as its target is requi This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Large-Object.md b/doc/Large-Object.md index 14c42db..b43460c 100644 --- a/doc/Large-Object.md +++ b/doc/Large-Object.md @@ -222,6 +222,6 @@ If an error occurs an exception will be thrown. This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Parameter-Type-Conversion.md b/doc/Parameter-Type-Conversion.md index 848c95a..a2db51f 100644 --- a/doc/Parameter-Type-Conversion.md +++ b/doc/Parameter-Type-Conversion.md @@ -186,6 +186,6 @@ TODO: Write proper documentation. This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Performance.md b/doc/Performance.md index 06d5d8e..5552488 100644 --- a/doc/Performance.md +++ b/doc/Performance.md @@ -6,6 +6,6 @@ This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Requirements.md b/doc/Requirements.md index 2237356..369ba59 100644 --- a/doc/Requirements.md +++ b/doc/Requirements.md @@ -42,6 +42,6 @@ You can decide which options you want to use in your project, we just try to not This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Result-Type-Conversion.md b/doc/Result-Type-Conversion.md index 6b8eca0..c7abb28 100644 --- a/doc/Result-Type-Conversion.md +++ b/doc/Result-Type-Conversion.md @@ -146,6 +146,6 @@ TODO: Write proper documentation. This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Result.md b/doc/Result.md index 2cff59e..6bbba70 100644 --- a/doc/Result.md +++ b/doc/Result.md @@ -482,6 +482,6 @@ auto tao::pq::field::optional() const This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Statement.md b/doc/Statement.md index 611d222..0632fb5 100644 --- a/doc/Statement.md +++ b/doc/Statement.md @@ -125,6 +125,6 @@ The [Parameter Type Conversion](Parameter-Type-Conversion.md) chapter explains w This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/doc/Transaction.md b/doc/Transaction.md index 9af4fa3..78d83cd 100644 --- a/doc/Transaction.md +++ b/doc/Transaction.md @@ -160,6 +160,6 @@ auto tao::pq::transaction::connection() const noexcept This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch
Distributed under the Boost Software License, Version 1.0
See accompanying file [LICENSE_1_0.txt](../LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt diff --git a/include/tao/pq.hpp b/include/tao/pq.hpp index 53680d8..fbcde9f 100644 --- a/include/tao/pq.hpp +++ b/include/tao/pq.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/access_mode.hpp b/include/tao/pq/access_mode.hpp index 9feb5eb..5237aa4 100644 --- a/include/tao/pq/access_mode.hpp +++ b/include/tao/pq/access_mode.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/binary.hpp b/include/tao/pq/binary.hpp index 25229aa..0a38180 100644 --- a/include/tao/pq/binary.hpp +++ b/include/tao/pq/binary.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/bind.hpp b/include/tao/pq/bind.hpp index 0345193..122d595 100644 --- a/include/tao/pq/bind.hpp +++ b/include/tao/pq/bind.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/connection.hpp b/include/tao/pq/connection.hpp index 6c969cb..4eb8bfd 100644 --- a/include/tao/pq/connection.hpp +++ b/include/tao/pq/connection.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/connection_pool.hpp b/include/tao/pq/connection_pool.hpp index c98b2f0..4418e9d 100644 --- a/include/tao/pq/connection_pool.hpp +++ b/include/tao/pq/connection_pool.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/connection_status.hpp b/include/tao/pq/connection_status.hpp index 1c01530..4011161 100644 --- a/include/tao/pq/connection_status.hpp +++ b/include/tao/pq/connection_status.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2022-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/exception.hpp b/include/tao/pq/exception.hpp index 4a3a64c..8645f47 100644 --- a/include/tao/pq/exception.hpp +++ b/include/tao/pq/exception.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/field.hpp b/include/tao/pq/field.hpp index 438e337..64b72a6 100644 --- a/include/tao/pq/field.hpp +++ b/include/tao/pq/field.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/aggregate.hpp b/include/tao/pq/internal/aggregate.hpp index d7e627c..a4bf63d 100644 --- a/include/tao/pq/internal/aggregate.hpp +++ b/include/tao/pq/internal/aggregate.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/demangle.hpp b/include/tao/pq/internal/demangle.hpp index 027739b..93d13ab 100644 --- a/include/tao/pq/internal/demangle.hpp +++ b/include/tao/pq/internal/demangle.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/exclusive_scan.hpp b/include/tao/pq/internal/exclusive_scan.hpp index d464115..d0b4d4d 100644 --- a/include/tao/pq/internal/exclusive_scan.hpp +++ b/include/tao/pq/internal/exclusive_scan.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2019-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/format_as.hpp b/include/tao/pq/internal/format_as.hpp index 2015291..dbabd6d 100644 --- a/include/tao/pq/internal/format_as.hpp +++ b/include/tao/pq/internal/format_as.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/from_chars.hpp b/include/tao/pq/internal/from_chars.hpp index abe525b..adda411 100644 --- a/include/tao/pq/internal/from_chars.hpp +++ b/include/tao/pq/internal/from_chars.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/gen.hpp b/include/tao/pq/internal/gen.hpp index b9585e6..ff6aca1 100644 --- a/include/tao/pq/internal/gen.hpp +++ b/include/tao/pq/internal/gen.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2019-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/parameter_traits_helper.hpp b/include/tao/pq/internal/parameter_traits_helper.hpp index fc0eefc..3fcb8b7 100644 --- a/include/tao/pq/internal/parameter_traits_helper.hpp +++ b/include/tao/pq/internal/parameter_traits_helper.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/poll.hpp b/include/tao/pq/internal/poll.hpp index 8463366..fc9fda4 100644 --- a/include/tao/pq/internal/poll.hpp +++ b/include/tao/pq/internal/poll.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/pool.hpp b/include/tao/pq/internal/pool.hpp index 80f91d3..418d643 100644 --- a/include/tao/pq/internal/pool.hpp +++ b/include/tao/pq/internal/pool.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/resize_uninitialized.hpp b/include/tao/pq/internal/resize_uninitialized.hpp index ced6ea9..61a3f93 100644 --- a/include/tao/pq/internal/resize_uninitialized.hpp +++ b/include/tao/pq/internal/resize_uninitialized.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/strtox.hpp b/include/tao/pq/internal/strtox.hpp index b4284ad..aafe579 100644 --- a/include/tao/pq/internal/strtox.hpp +++ b/include/tao/pq/internal/strtox.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/unreachable.hpp b/include/tao/pq/internal/unreachable.hpp index a17ea28..95f25f2 100644 --- a/include/tao/pq/internal/unreachable.hpp +++ b/include/tao/pq/internal/unreachable.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/internal/zsv.hpp b/include/tao/pq/internal/zsv.hpp index 2c8d561..4c43f34 100644 --- a/include/tao/pq/internal/zsv.hpp +++ b/include/tao/pq/internal/zsv.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/is_aggregate.hpp b/include/tao/pq/is_aggregate.hpp index 3b4aefe..ec53b4a 100644 --- a/include/tao/pq/is_aggregate.hpp +++ b/include/tao/pq/is_aggregate.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/is_array.hpp b/include/tao/pq/is_array.hpp index ebefb16..26c0601 100644 --- a/include/tao/pq/is_array.hpp +++ b/include/tao/pq/is_array.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/isolation_level.hpp b/include/tao/pq/isolation_level.hpp index 225e427..bdf7ed2 100644 --- a/include/tao/pq/isolation_level.hpp +++ b/include/tao/pq/isolation_level.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/large_object.hpp b/include/tao/pq/large_object.hpp index 1f27676..624cfec 100644 --- a/include/tao/pq/large_object.hpp +++ b/include/tao/pq/large_object.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/log.hpp b/include/tao/pq/log.hpp index e97f922..ed95661 100644 --- a/include/tao/pq/log.hpp +++ b/include/tao/pq/log.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/notification.hpp b/include/tao/pq/notification.hpp index 7169f03..8bbeb0b 100644 --- a/include/tao/pq/notification.hpp +++ b/include/tao/pq/notification.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/null.hpp b/include/tao/pq/null.hpp index f149e30..02d664f 100644 --- a/include/tao/pq/null.hpp +++ b/include/tao/pq/null.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/oid.hpp b/include/tao/pq/oid.hpp index 33ba150..eb607bb 100644 --- a/include/tao/pq/oid.hpp +++ b/include/tao/pq/oid.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/parameter.hpp b/include/tao/pq/parameter.hpp index 78b8012..aa3a4da 100644 --- a/include/tao/pq/parameter.hpp +++ b/include/tao/pq/parameter.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/parameter_traits.hpp b/include/tao/pq/parameter_traits.hpp index 13819ab..e92965c 100644 --- a/include/tao/pq/parameter_traits.hpp +++ b/include/tao/pq/parameter_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/parameter_traits_aggregate.hpp b/include/tao/pq/parameter_traits_aggregate.hpp index 034a584..f49b8e5 100644 --- a/include/tao/pq/parameter_traits_aggregate.hpp +++ b/include/tao/pq/parameter_traits_aggregate.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/parameter_traits_array.hpp b/include/tao/pq/parameter_traits_array.hpp index 628b374..e819dc3 100644 --- a/include/tao/pq/parameter_traits_array.hpp +++ b/include/tao/pq/parameter_traits_array.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/parameter_traits_optional.hpp b/include/tao/pq/parameter_traits_optional.hpp index b2b68a1..4c79ad8 100644 --- a/include/tao/pq/parameter_traits_optional.hpp +++ b/include/tao/pq/parameter_traits_optional.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/parameter_traits_pair.hpp b/include/tao/pq/parameter_traits_pair.hpp index 964ac07..9d185bd 100644 --- a/include/tao/pq/parameter_traits_pair.hpp +++ b/include/tao/pq/parameter_traits_pair.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/parameter_traits_tuple.hpp b/include/tao/pq/parameter_traits_tuple.hpp index cc2cfd1..514136d 100644 --- a/include/tao/pq/parameter_traits_tuple.hpp +++ b/include/tao/pq/parameter_traits_tuple.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/pipeline.hpp b/include/tao/pq/pipeline.hpp index f4eae9e..8bc5bf5 100644 --- a/include/tao/pq/pipeline.hpp +++ b/include/tao/pq/pipeline.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/pipeline_status.hpp b/include/tao/pq/pipeline_status.hpp index c52c9db..e9ccec9 100644 --- a/include/tao/pq/pipeline_status.hpp +++ b/include/tao/pq/pipeline_status.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/poll.hpp b/include/tao/pq/poll.hpp index 1c09999..231e38c 100644 --- a/include/tao/pq/poll.hpp +++ b/include/tao/pq/poll.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/result.hpp b/include/tao/pq/result.hpp index d1fb43b..c285dc4 100644 --- a/include/tao/pq/result.hpp +++ b/include/tao/pq/result.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/result_status.hpp b/include/tao/pq/result_status.hpp index a8ad979..0930bf2 100644 --- a/include/tao/pq/result_status.hpp +++ b/include/tao/pq/result_status.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/result_traits.hpp b/include/tao/pq/result_traits.hpp index b06a6b1..2e0ea7a 100644 --- a/include/tao/pq/result_traits.hpp +++ b/include/tao/pq/result_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/result_traits_aggregate.hpp b/include/tao/pq/result_traits_aggregate.hpp index 9e12dd6..0ce3192 100644 --- a/include/tao/pq/result_traits_aggregate.hpp +++ b/include/tao/pq/result_traits_aggregate.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/result_traits_array.hpp b/include/tao/pq/result_traits_array.hpp index 120e8cb..f4f0801 100644 --- a/include/tao/pq/result_traits_array.hpp +++ b/include/tao/pq/result_traits_array.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/result_traits_optional.hpp b/include/tao/pq/result_traits_optional.hpp index 7409e8a..cf74430 100644 --- a/include/tao/pq/result_traits_optional.hpp +++ b/include/tao/pq/result_traits_optional.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/result_traits_pair.hpp b/include/tao/pq/result_traits_pair.hpp index f5e24c3..8170b1a 100644 --- a/include/tao/pq/result_traits_pair.hpp +++ b/include/tao/pq/result_traits_pair.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/result_traits_tuple.hpp b/include/tao/pq/result_traits_tuple.hpp index eb86c66..87cde99 100644 --- a/include/tao/pq/result_traits_tuple.hpp +++ b/include/tao/pq/result_traits_tuple.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/row.hpp b/include/tao/pq/row.hpp index 7abd494..55b204b 100644 --- a/include/tao/pq/row.hpp +++ b/include/tao/pq/row.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/table_field.hpp b/include/tao/pq/table_field.hpp index 88efd5e..60dc10d 100644 --- a/include/tao/pq/table_field.hpp +++ b/include/tao/pq/table_field.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/table_reader.hpp b/include/tao/pq/table_reader.hpp index 5dbfc98..0f1a12b 100644 --- a/include/tao/pq/table_reader.hpp +++ b/include/tao/pq/table_reader.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/table_row.hpp b/include/tao/pq/table_row.hpp index f39b611..f623829 100644 --- a/include/tao/pq/table_row.hpp +++ b/include/tao/pq/table_row.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/table_writer.hpp b/include/tao/pq/table_writer.hpp index 360ea20..a74fba4 100644 --- a/include/tao/pq/table_writer.hpp +++ b/include/tao/pq/table_writer.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/transaction.hpp b/include/tao/pq/transaction.hpp index a8d2a91..7c7febb 100644 --- a/include/tao/pq/transaction.hpp +++ b/include/tao/pq/transaction.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/transaction_base.hpp b/include/tao/pq/transaction_base.hpp index 1015bfc..03eff20 100644 --- a/include/tao/pq/transaction_base.hpp +++ b/include/tao/pq/transaction_base.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/transaction_status.hpp b/include/tao/pq/transaction_status.hpp index 805173d..0cd4b12 100644 --- a/include/tao/pq/transaction_status.hpp +++ b/include/tao/pq/transaction_status.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2022-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/include/tao/pq/version.hpp b/include/tao/pq/version.hpp index a4a20e5..eadb81d 100644 --- a/include/tao/pq/version.hpp +++ b/include/tao/pq/version.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/connection.cpp b/src/lib/pq/connection.cpp index 31bcccb..580580d 100644 --- a/src/lib/pq/connection.cpp +++ b/src/lib/pq/connection.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/connection_pool.cpp b/src/lib/pq/connection_pool.cpp index 509f88a..f9486ea 100644 --- a/src/lib/pq/connection_pool.cpp +++ b/src/lib/pq/connection_pool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/exception.cpp b/src/lib/pq/exception.cpp index 52f96be..04ca9e5 100644 --- a/src/lib/pq/exception.cpp +++ b/src/lib/pq/exception.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/field.cpp b/src/lib/pq/field.cpp index 4ade4d3..3cf6c53 100644 --- a/src/lib/pq/field.cpp +++ b/src/lib/pq/field.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/internal/demangle.cpp b/src/lib/pq/internal/demangle.cpp index 6709eb3..01507b8 100644 --- a/src/lib/pq/internal/demangle.cpp +++ b/src/lib/pq/internal/demangle.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/internal/poll.cpp b/src/lib/pq/internal/poll.cpp index 63689e8..7740fdf 100644 --- a/src/lib/pq/internal/poll.cpp +++ b/src/lib/pq/internal/poll.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/internal/strtox.cpp b/src/lib/pq/internal/strtox.cpp index b16f870..626b98f 100644 --- a/src/lib/pq/internal/strtox.cpp +++ b/src/lib/pq/internal/strtox.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/large_object.cpp b/src/lib/pq/large_object.cpp index 348195b..80aee01 100644 --- a/src/lib/pq/large_object.cpp +++ b/src/lib/pq/large_object.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/parameter_traits.cpp b/src/lib/pq/parameter_traits.cpp index 9315338..5001793 100644 --- a/src/lib/pq/parameter_traits.cpp +++ b/src/lib/pq/parameter_traits.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/pipeline.cpp b/src/lib/pq/pipeline.cpp index 896936c..3ce9669 100644 --- a/src/lib/pq/pipeline.cpp +++ b/src/lib/pq/pipeline.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/result.cpp b/src/lib/pq/result.cpp index dc44fe7..1a24ea3 100644 --- a/src/lib/pq/result.cpp +++ b/src/lib/pq/result.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/result_traits.cpp b/src/lib/pq/result_traits.cpp index 5892384..198605c 100644 --- a/src/lib/pq/result_traits.cpp +++ b/src/lib/pq/result_traits.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/result_traits_array.cpp b/src/lib/pq/result_traits_array.cpp index bc7db40..cc51297 100644 --- a/src/lib/pq/result_traits_array.cpp +++ b/src/lib/pq/result_traits_array.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/row.cpp b/src/lib/pq/row.cpp index 39432fe..7907fe7 100644 --- a/src/lib/pq/row.cpp +++ b/src/lib/pq/row.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/table_field.cpp b/src/lib/pq/table_field.cpp index cf53cff..5f5c584 100644 --- a/src/lib/pq/table_field.cpp +++ b/src/lib/pq/table_field.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/table_reader.cpp b/src/lib/pq/table_reader.cpp index c4647ae..4fd2797 100644 --- a/src/lib/pq/table_reader.cpp +++ b/src/lib/pq/table_reader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/table_row.cpp b/src/lib/pq/table_row.cpp index 14b84db..5e4e5df 100644 --- a/src/lib/pq/table_row.cpp +++ b/src/lib/pq/table_row.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/table_writer.cpp b/src/lib/pq/table_writer.cpp index 9a2b976..6c0f6dc 100644 --- a/src/lib/pq/table_writer.cpp +++ b/src/lib/pq/table_writer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/transaction.cpp b/src/lib/pq/transaction.cpp index b774802..ff78442 100644 --- a/src/lib/pq/transaction.cpp +++ b/src/lib/pq/transaction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/lib/pq/transaction_base.cpp b/src/lib/pq/transaction_base.cpp index e187507..37cd7e9 100644 --- a/src/lib/pq/transaction_base.cpp +++ b/src/lib/pq/transaction_base.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/compare.hpp b/src/test/compare.hpp index 99db069..79b1210 100644 --- a/src/test/compare.hpp +++ b/src/test/compare.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/getenv.hpp b/src/test/getenv.hpp index 42f0dc0..bc730f8 100644 --- a/src/test/getenv.hpp +++ b/src/test/getenv.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/macros.hpp b/src/test/macros.hpp index a1d37d3..6a71d4e 100644 --- a/src/test/macros.hpp +++ b/src/test/macros.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/aggregate.cpp b/src/test/pq/aggregate.cpp index b52f135..7716587 100644 --- a/src/test/pq/aggregate.cpp +++ b/src/test/pq/aggregate.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/array.cpp b/src/test/pq/array.cpp index f5a3acb..87247a0 100644 --- a/src/test/pq/array.cpp +++ b/src/test/pq/array.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/basic_datatypes.cpp b/src/test/pq/basic_datatypes.cpp index 4bd7948..1398d8a 100644 --- a/src/test/pq/basic_datatypes.cpp +++ b/src/test/pq/basic_datatypes.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/chunk_mode.cpp b/src/test/pq/chunk_mode.cpp index 67ae6a1..eb5dec6 100644 --- a/src/test/pq/chunk_mode.cpp +++ b/src/test/pq/chunk_mode.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/connection.cpp b/src/test/pq/connection.cpp index 104b84c..592f509 100644 --- a/src/test/pq/connection.cpp +++ b/src/test/pq/connection.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/connection_pool.cpp b/src/test/pq/connection_pool.cpp index 66c332a..045afc8 100644 --- a/src/test/pq/connection_pool.cpp +++ b/src/test/pq/connection_pool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/example.cpp b/src/test/pq/example.cpp index f9bc488..c2849ac 100644 --- a/src/test/pq/example.cpp +++ b/src/test/pq/example.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/exception.cpp b/src/test/pq/exception.cpp index 691a3d0..3407a0f 100644 --- a/src/test/pq/exception.cpp +++ b/src/test/pq/exception.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/getenv.cpp b/src/test/pq/getenv.cpp index e900ea0..d70a8a6 100644 --- a/src/test/pq/getenv.cpp +++ b/src/test/pq/getenv.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/large_object.cpp b/src/test/pq/large_object.cpp index 988dcf1..c53eacf 100644 --- a/src/test/pq/large_object.cpp +++ b/src/test/pq/large_object.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/log.cpp b/src/test/pq/log.cpp index dc213cd..1100cd9 100644 --- a/src/test/pq/log.cpp +++ b/src/test/pq/log.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/notifications.cpp b/src/test/pq/notifications.cpp index a6ec036..d9c002c 100644 --- a/src/test/pq/notifications.cpp +++ b/src/test/pq/notifications.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/parameter.cpp b/src/test/pq/parameter.cpp index 111c49c..38c8d0a 100644 --- a/src/test/pq/parameter.cpp +++ b/src/test/pq/parameter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/parameter_type.cpp b/src/test/pq/parameter_type.cpp index 0ce3e60..4a0d9b5 100644 --- a/src/test/pq/parameter_type.cpp +++ b/src/test/pq/parameter_type.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/password.cpp b/src/test/pq/password.cpp index 4a46095..75a5b1a 100644 --- a/src/test/pq/password.cpp +++ b/src/test/pq/password.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/pipeline_mode.cpp b/src/test/pq/pipeline_mode.cpp index ccca866..31e5465 100644 --- a/src/test/pq/pipeline_mode.cpp +++ b/src/test/pq/pipeline_mode.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2024-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/resize_uninitialized.cpp b/src/test/pq/resize_uninitialized.cpp index 7e51656..229f161 100644 --- a/src/test/pq/resize_uninitialized.cpp +++ b/src/test/pq/resize_uninitialized.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/result.cpp b/src/test/pq/result.cpp index 01dce31..09e72ca 100644 --- a/src/test/pq/result.cpp +++ b/src/test/pq/result.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/result_type.cpp b/src/test/pq/result_type.cpp index 20fd9c1..01f268b 100644 --- a/src/test/pq/result_type.cpp +++ b/src/test/pq/result_type.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/row.cpp b/src/test/pq/row.cpp index 3a73572..23af8d4 100644 --- a/src/test/pq/row.cpp +++ b/src/test/pq/row.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/single_row_mode.cpp b/src/test/pq/single_row_mode.cpp index 8e806b5..7d58b50 100644 --- a/src/test/pq/single_row_mode.cpp +++ b/src/test/pq/single_row_mode.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/strtox.cpp b/src/test/pq/strtox.cpp index 39a9d2a..b9c0b31 100644 --- a/src/test/pq/strtox.cpp +++ b/src/test/pq/strtox.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/table_reader.cpp b/src/test/pq/table_reader.cpp index bcfa5c7..efb91bd 100644 --- a/src/test/pq/table_reader.cpp +++ b/src/test/pq/table_reader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/table_writer.cpp b/src/test/pq/table_writer.cpp index de95574..7f77256 100644 --- a/src/test/pq/table_writer.cpp +++ b/src/test/pq/table_writer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/traits.cpp b/src/test/pq/traits.cpp index f3e181c..ec05d1e 100644 --- a/src/test/pq/traits.cpp +++ b/src/test/pq/traits.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2025 Daniel Frey and Dr. Colin Hirsch // 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) diff --git a/src/test/pq/transaction.cpp b/src/test/pq/transaction.cpp index 2706e01..23b3e82 100644 --- a/src/test/pq/transaction.cpp +++ b/src/test/pq/transaction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2024 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2025 Daniel Frey and Dr. Colin Hirsch // 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)