From d9e0df2d096756e226fbdb94ca9bb55a0995cb0f Mon Sep 17 00:00:00 2001 From: Daniel Frey Date: Thu, 29 Feb 2024 20:46:15 +0100 Subject: [PATCH] Welcome 2024 --- .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/dependent_false.hpp | 2 +- include/tao/pq/internal/exclusive_scan.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/printf.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/isolation_level.hpp | 2 +- include/tao/pq/large_object.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/poll.hpp | 2 +- include/tao/pq/result.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_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/printf.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/result.cpp | 2 +- src/lib/pq/result_traits.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/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/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/has_reserve.cpp | 2 +- src/test/pq/large_object.cpp | 2 +- src/test/pq/notifications.cpp | 2 +- src/test/pq/parameter.cpp | 2 +- src/test/pq/resize_uninitialized.cpp | 2 +- src/test/pq/result.cpp | 2 +- src/test/pq/row.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 +- 112 files changed, 112 insertions(+), 112 deletions(-) diff --git a/.clang-format b/.clang-format index a111c83..5eece0c 100644 --- a/.clang-format +++ b/.clang-format @@ -1,7 +1,7 @@ # The Art of C++ # https://github.com/taocpp -# Copyright (c) 2016-2023 Dr. Colin Hirsch and Daniel Frey +# Copyright (c) 2016-2024 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 50ccf23..75e380e 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,7 +1,7 @@ # The Art of C++ # https://github.com/taocpp -# Copyright (c) 2016-2023 Dr. Colin Hirsch and Daniel Frey +# Copyright (c) 2016-2024 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 316e972..10878a0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # The Art of C++ # https://github.com/taocpp -# Copyright (c) 2016-2023 Daniel Frey +# Copyright (c) 2016-2024 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 0e0449f..640c957 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-2023 Daniel Frey and Dr. Colin Hirsch +Copyright (c) 2016-2024 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 629ee79..1444287 100644 --- a/doc/Aggregate-Support.md +++ b/doc/Aggregate-Support.md @@ -98,6 +98,6 @@ int main() This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 bc358b4..99716ce 100644 --- a/doc/Binary-Data.md +++ b/doc/Binary-Data.md @@ -56,6 +56,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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 bdb6a15..e78fa7c 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 12ce957..9ecbef7 100644 --- a/doc/Connection-Pool.md +++ b/doc/Connection-Pool.md @@ -166,6 +166,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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 3041d65..611b2b0 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 60018b0..e683294 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 9c0936f..60f7717 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 065773a..b692511 100644 --- a/doc/Installation.md +++ b/doc/Installation.md @@ -109,6 +109,6 @@ If you want to use `libpq` from your system, there are few ways to install it: This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 089fc00..280b0f7 100644 --- a/doc/Large-Object.md +++ b/doc/Large-Object.md @@ -227,6 +227,6 @@ If an error occurs an exception will be thrown. This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 e8044c7..55d0bd9 100644 --- a/doc/Parameter-Type-Conversion.md +++ b/doc/Parameter-Type-Conversion.md @@ -188,6 +188,6 @@ TODO: Write proper documentation. This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 51529d6..06d5d8e 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 85e51db..cc8e1e2 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 752a67d..cf4b056 100644 --- a/doc/Result-Type-Conversion.md +++ b/doc/Result-Type-Conversion.md @@ -147,6 +147,6 @@ TODO: Write proper documentation. This document is part of [taoPQ](https://github.com/taocpp/taopq). -Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 1fef9ed..2cff59e 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 dde4ea1..611d222 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 b7a519a..9af4fa3 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-2023 Daniel Frey and Dr. Colin Hirsch
+Copyright (c) 2021-2024 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 a60adcf..5b85aa5 100644 --- a/include/tao/pq.hpp +++ b/include/tao/pq.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 97a606e..5d1402a 100644 --- a/include/tao/pq/access_mode.hpp +++ b/include/tao/pq/access_mode.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 8cd9452..a9af3ba 100644 --- a/include/tao/pq/binary.hpp +++ b/include/tao/pq/binary.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 446d12a..41b1047 100644 --- a/include/tao/pq/bind.hpp +++ b/include/tao/pq/bind.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 bc38f4f..266afe4 100644 --- a/include/tao/pq/connection.hpp +++ b/include/tao/pq/connection.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 c07a684..0b7a785 100644 --- a/include/tao/pq/connection_pool.hpp +++ b/include/tao/pq/connection_pool.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 f2100d3..988b023 100644 --- a/include/tao/pq/connection_status.hpp +++ b/include/tao/pq/connection_status.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2022-2024 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 54f3b35..4a3a64c 100644 --- a/include/tao/pq/exception.hpp +++ b/include/tao/pq/exception.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 0e984f0..0babe0f 100644 --- a/include/tao/pq/field.hpp +++ b/include/tao/pq/field.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 c72f3b1..0a40123 100644 --- a/include/tao/pq/internal/aggregate.hpp +++ b/include/tao/pq/internal/aggregate.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 1bab876..027739b 100644 --- a/include/tao/pq/internal/demangle.hpp +++ b/include/tao/pq/internal/demangle.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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/dependent_false.hpp b/include/tao/pq/internal/dependent_false.hpp index 4c4221a..1f18b48 100644 --- a/include/tao/pq/internal/dependent_false.hpp +++ b/include/tao/pq/internal/dependent_false.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2024 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 eda9c84..d464115 100644 --- a/include/tao/pq/internal/exclusive_scan.hpp +++ b/include/tao/pq/internal/exclusive_scan.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2019-2024 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 5f1c6b8..e37a04d 100644 --- a/include/tao/pq/internal/from_chars.hpp +++ b/include/tao/pq/internal/from_chars.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 8c4ab7c..f64fb65 100644 --- a/include/tao/pq/internal/gen.hpp +++ b/include/tao/pq/internal/gen.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2019-2024 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 ff17ad4..c73053c 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-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 3d959e0..8463366 100644 --- a/include/tao/pq/internal/poll.hpp +++ b/include/tao/pq/internal/poll.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2024 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 88378c6..68c0cbb 100644 --- a/include/tao/pq/internal/pool.hpp +++ b/include/tao/pq/internal/pool.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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/printf.hpp b/include/tao/pq/internal/printf.hpp index b317f3a..36f4d7c 100644 --- a/include/tao/pq/internal/printf.hpp +++ b/include/tao/pq/internal/printf.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 52f1f8f..9747d8d 100644 --- a/include/tao/pq/internal/resize_uninitialized.hpp +++ b/include/tao/pq/internal/resize_uninitialized.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 1782270..b4284ad 100644 --- a/include/tao/pq/internal/strtox.hpp +++ b/include/tao/pq/internal/strtox.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 c1a6180..a0fd501 100644 --- a/include/tao/pq/internal/unreachable.hpp +++ b/include/tao/pq/internal/unreachable.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2024 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 6bba85c..2c8d561 100644 --- a/include/tao/pq/internal/zsv.hpp +++ b/include/tao/pq/internal/zsv.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 6fe8f25..3b4aefe 100644 --- a/include/tao/pq/is_aggregate.hpp +++ b/include/tao/pq/is_aggregate.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 b7de13b..02038ac 100644 --- a/include/tao/pq/isolation_level.hpp +++ b/include/tao/pq/isolation_level.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2024 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 c676c3a..784f006 100644 --- a/include/tao/pq/large_object.hpp +++ b/include/tao/pq/large_object.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 7c6e83d..7169f03 100644 --- a/include/tao/pq/notification.hpp +++ b/include/tao/pq/notification.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 23f765c..f149e30 100644 --- a/include/tao/pq/null.hpp +++ b/include/tao/pq/null.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 e39da0d..59930cd 100644 --- a/include/tao/pq/oid.hpp +++ b/include/tao/pq/oid.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 69cc10c..cc9be3b 100644 --- a/include/tao/pq/parameter.hpp +++ b/include/tao/pq/parameter.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2024 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 4c26147..61aeed3 100644 --- a/include/tao/pq/parameter_traits.hpp +++ b/include/tao/pq/parameter_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2024 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 892adcb..f381696 100644 --- a/include/tao/pq/parameter_traits_aggregate.hpp +++ b/include/tao/pq/parameter_traits_aggregate.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2024 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 d151554..fac37de 100644 --- a/include/tao/pq/parameter_traits_array.hpp +++ b/include/tao/pq/parameter_traits_array.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 20da68c..e040432 100644 --- a/include/tao/pq/parameter_traits_optional.hpp +++ b/include/tao/pq/parameter_traits_optional.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 9df34ad..b5e03be 100644 --- a/include/tao/pq/parameter_traits_pair.hpp +++ b/include/tao/pq/parameter_traits_pair.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 2201167..69f0e9e 100644 --- a/include/tao/pq/parameter_traits_tuple.hpp +++ b/include/tao/pq/parameter_traits_tuple.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 efdbb32..9bda090 100644 --- a/include/tao/pq/poll.hpp +++ b/include/tao/pq/poll.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2024 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 0a1d305..b99c411 100644 --- a/include/tao/pq/result.hpp +++ b/include/tao/pq/result.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 7191afc..1892054 100644 --- a/include/tao/pq/result_traits.hpp +++ b/include/tao/pq/result_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 39b7e57..2723457 100644 --- a/include/tao/pq/result_traits_aggregate.hpp +++ b/include/tao/pq/result_traits_aggregate.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 542eb2a..c9f4a4f 100644 --- a/include/tao/pq/result_traits_array.hpp +++ b/include/tao/pq/result_traits_array.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 ed0729f..b497d0a 100644 --- a/include/tao/pq/result_traits_optional.hpp +++ b/include/tao/pq/result_traits_optional.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 cc7cd12..3ff52a4 100644 --- a/include/tao/pq/result_traits_pair.hpp +++ b/include/tao/pq/result_traits_pair.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 822882e..94b7e81 100644 --- a/include/tao/pq/result_traits_tuple.hpp +++ b/include/tao/pq/result_traits_tuple.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 a058123..931b2aa 100644 --- a/include/tao/pq/row.hpp +++ b/include/tao/pq/row.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 fb47cdb..9a28690 100644 --- a/include/tao/pq/table_field.hpp +++ b/include/tao/pq/table_field.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 ab0aa9e..e8b704d 100644 --- a/include/tao/pq/table_reader.hpp +++ b/include/tao/pq/table_reader.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 36c25d4..997f660 100644 --- a/include/tao/pq/table_row.hpp +++ b/include/tao/pq/table_row.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 45908e4..f2fce12 100644 --- a/include/tao/pq/table_writer.hpp +++ b/include/tao/pq/table_writer.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 3be0ad4..5ea6e95 100644 --- a/include/tao/pq/transaction.hpp +++ b/include/tao/pq/transaction.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 ada3f60..a50f736 100644 --- a/include/tao/pq/transaction_status.hpp +++ b/include/tao/pq/transaction_status.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2022-2024 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 0866c90..a4a20e5 100644 --- a/include/tao/pq/version.hpp +++ b/include/tao/pq/version.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 c12cf92..10387c4 100644 --- a/src/lib/pq/connection.cpp +++ b/src/lib/pq/connection.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 885b4ca..9371a05 100644 --- a/src/lib/pq/connection_pool.cpp +++ b/src/lib/pq/connection_pool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 9dc0115..c439659 100644 --- a/src/lib/pq/exception.cpp +++ b/src/lib/pq/exception.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 a056ba0..890f623 100644 --- a/src/lib/pq/field.cpp +++ b/src/lib/pq/field.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 2731e52..ac915e3 100644 --- a/src/lib/pq/internal/demangle.cpp +++ b/src/lib/pq/internal/demangle.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 296f9b7..4b9097d 100644 --- a/src/lib/pq/internal/poll.cpp +++ b/src/lib/pq/internal/poll.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2024 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/printf.cpp b/src/lib/pq/internal/printf.cpp index 45bfda7..39b7d2f 100644 --- a/src/lib/pq/internal/printf.cpp +++ b/src/lib/pq/internal/printf.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 274aeaf..2a1f1fb 100644 --- a/src/lib/pq/internal/strtox.cpp +++ b/src/lib/pq/internal/strtox.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 1d7b6fa..7dba37e 100644 --- a/src/lib/pq/large_object.cpp +++ b/src/lib/pq/large_object.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 0387699..da2ae2e 100644 --- a/src/lib/pq/parameter_traits.cpp +++ b/src/lib/pq/parameter_traits.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 c945ecd..d135075 100644 --- a/src/lib/pq/result.cpp +++ b/src/lib/pq/result.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 8bda4dc..c1e8354 100644 --- a/src/lib/pq/result_traits.cpp +++ b/src/lib/pq/result_traits.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 f2de9ad..6e46198 100644 --- a/src/lib/pq/row.cpp +++ b/src/lib/pq/row.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 68a2615..1b8eb22 100644 --- a/src/lib/pq/table_field.cpp +++ b/src/lib/pq/table_field.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 55815e2..d603f1a 100644 --- a/src/lib/pq/table_reader.cpp +++ b/src/lib/pq/table_reader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 e1093da..adbefd2 100644 --- a/src/lib/pq/table_row.cpp +++ b/src/lib/pq/table_row.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 5da8556..d9d1aab 100644 --- a/src/lib/pq/table_writer.cpp +++ b/src/lib/pq/table_writer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 239babb..ab1af03 100644 --- a/src/lib/pq/transaction.cpp +++ b/src/lib/pq/transaction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 7ca1539..8ff1569 100644 --- a/src/test/getenv.hpp +++ b/src/test/getenv.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 1ecc1a1..ea5a31a 100644 --- a/src/test/macros.hpp +++ b/src/test/macros.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 120ab66..a2ee511 100644 --- a/src/test/pq/aggregate.cpp +++ b/src/test/pq/aggregate.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2024 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 eb28427..48bdd92 100644 --- a/src/test/pq/array.cpp +++ b/src/test/pq/array.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 0518fea..650499a 100644 --- a/src/test/pq/basic_datatypes.cpp +++ b/src/test/pq/basic_datatypes.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 0fa7b0b..efe7fdb 100644 --- a/src/test/pq/connection.cpp +++ b/src/test/pq/connection.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 707c929..d2a47ae 100644 --- a/src/test/pq/connection_pool.cpp +++ b/src/test/pq/connection_pool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 2d62fb2..0729ad1 100644 --- a/src/test/pq/example.cpp +++ b/src/test/pq/example.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 5bc3217..a2e7bb9 100644 --- a/src/test/pq/exception.cpp +++ b/src/test/pq/exception.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 d869fd1..9e3ed6e 100644 --- a/src/test/pq/getenv.cpp +++ b/src/test/pq/getenv.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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/has_reserve.cpp b/src/test/pq/has_reserve.cpp index 5f4de50..d6ac2f7 100644 --- a/src/test/pq/has_reserve.cpp +++ b/src/test/pq/has_reserve.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 f670b5a..e876a82 100644 --- a/src/test/pq/large_object.cpp +++ b/src/test/pq/large_object.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 7de6419..3363605 100644 --- a/src/test/pq/notifications.cpp +++ b/src/test/pq/notifications.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 fea99a3..2708ade 100644 --- a/src/test/pq/parameter.cpp +++ b/src/test/pq/parameter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2023-2024 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 4d6db2c..860b7c8 100644 --- a/src/test/pq/resize_uninitialized.cpp +++ b/src/test/pq/resize_uninitialized.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 4c78a4e..465347a 100644 --- a/src/test/pq/result.cpp +++ b/src/test/pq/result.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 bcb02d5..c1b491f 100644 --- a/src/test/pq/row.cpp +++ b/src/test/pq/row.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 50c6826..ac0fd0d 100644 --- a/src/test/pq/strtox.cpp +++ b/src/test/pq/strtox.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 83b6e0b..ad77949 100644 --- a/src/test/pq/table_reader.cpp +++ b/src/test/pq/table_reader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2021-2024 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 0048a18..fb797d3 100644 --- a/src/test/pq/table_writer.cpp +++ b/src/test/pq/table_writer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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 0ec2c47..0a6d8df 100644 --- a/src/test/pq/traits.cpp +++ b/src/test/pq/traits.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2020-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2020-2024 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 7fd5d22..db1abda 100644 --- a/src/test/pq/transaction.cpp +++ b/src/test/pq/transaction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Daniel Frey and Dr. Colin Hirsch +// Copyright (c) 2016-2024 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)