From fb1b1dfe2d42b70c5f8ae125c2e30084b8aaa707 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Mon, 24 Oct 2022 11:31:25 -0700 Subject: [PATCH] Add missing copyright updates --- test/exception/containers.hpp | 1 + test/exception/insert_exception_tests.cpp | 1 + test/exception/merge_exception_tests.cpp | 1 + test/exception/swap_exception_tests.cpp | 1 + test/helpers/invariants.hpp | 1 + test/unordered/assign_tests.cpp | 1 + test/unordered/at_tests.cpp | 1 + test/unordered/compile_map.cpp | 1 + test/unordered/compile_set.cpp | 1 + test/unordered/compile_tests.hpp | 1 + test/unordered/contains_tests.cpp | 2 +- test/unordered/emplace_tests.cpp | 1 + test/unordered/equality_tests.cpp | 1 + test/unordered/equivalent_keys_tests.cpp | 1 + test/unordered/erase_tests.cpp | 1 + test/unordered/fwd_map_test.cpp | 1 + test/unordered/fwd_set_test.cpp | 1 + test/unordered/incomplete_test.cpp | 1 + test/unordered/init_type_insert_tests.cpp | 5 +++++ test/unordered/insert_hint_tests.cpp | 1 + test/unordered/link_test_1.cpp | 1 + test/unordered/link_test_2.cpp | 1 + test/unordered/load_factor_tests.cpp | 1 + test/unordered/merge_tests.cpp | 1 + test/unordered/move_tests.cpp | 1 + test/unordered/noexcept_tests.cpp | 1 + test/unordered/rehash_tests.cpp | 1 + test/unordered/simple_tests.cpp | 1 + test/unordered/swap_tests.cpp | 1 + 29 files changed, 33 insertions(+), 1 deletion(-) diff --git a/test/exception/containers.hpp b/test/exception/containers.hpp index 9f78923d..e6eb267b 100644 --- a/test/exception/containers.hpp +++ b/test/exception/containers.hpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/exception/insert_exception_tests.cpp b/test/exception/insert_exception_tests.cpp index eee11183..27f95f7f 100644 --- a/test/exception/insert_exception_tests.cpp +++ b/test/exception/insert_exception_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "./containers.hpp" diff --git a/test/exception/merge_exception_tests.cpp b/test/exception/merge_exception_tests.cpp index a6a7afc7..e824fdde 100644 --- a/test/exception/merge_exception_tests.cpp +++ b/test/exception/merge_exception_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2017-2018 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/exception/swap_exception_tests.cpp b/test/exception/swap_exception_tests.cpp index 2745ede5..545d607a 100644 --- a/test/exception/swap_exception_tests.cpp +++ b/test/exception/swap_exception_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/helpers/invariants.hpp b/test/helpers/invariants.hpp index 849fe983..7fbe25a5 100644 --- a/test/helpers/invariants.hpp +++ b/test/helpers/invariants.hpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/assign_tests.cpp b/test/unordered/assign_tests.cpp index b937c57e..b000e42f 100644 --- a/test/unordered/assign_tests.cpp +++ b/test/unordered/assign_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/at_tests.cpp b/test/unordered/at_tests.cpp index bc5ad921..b06dfddb 100644 --- a/test/unordered/at_tests.cpp +++ b/test/unordered/at_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2007-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/compile_map.cpp b/test/unordered/compile_map.cpp index f43476c0..c4c8d7ce 100644 --- a/test/unordered/compile_map.cpp +++ b/test/unordered/compile_map.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/compile_set.cpp b/test/unordered/compile_set.cpp index d51bc11e..aa3721c6 100644 --- a/test/unordered/compile_set.cpp +++ b/test/unordered/compile_set.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/compile_tests.hpp b/test/unordered/compile_tests.hpp index 4aeaf61f..6c72e26d 100644 --- a/test/unordered/compile_tests.hpp +++ b/test/unordered/compile_tests.hpp @@ -1,5 +1,6 @@ // Copyright 2005-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/contains_tests.cpp b/test/unordered/contains_tests.cpp index 782e1915..870de2a3 100644 --- a/test/unordered/contains_tests.cpp +++ b/test/unordered/contains_tests.cpp @@ -1,4 +1,4 @@ -// Copyright 2021 Christian Mazakas. +// Copyright 2021-2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/emplace_tests.cpp b/test/unordered/emplace_tests.cpp index bf79e2c2..60aceb32 100644 --- a/test/unordered/emplace_tests.cpp +++ b/test/unordered/emplace_tests.cpp @@ -1,5 +1,6 @@ // // Copyright 2016 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/equality_tests.cpp b/test/unordered/equality_tests.cpp index 68e021ca..d10d07f2 100644 --- a/test/unordered/equality_tests.cpp +++ b/test/unordered/equality_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2008-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/equivalent_keys_tests.cpp b/test/unordered/equivalent_keys_tests.cpp index 0a67b768..b279a8c6 100644 --- a/test/unordered/equivalent_keys_tests.cpp +++ b/test/unordered/equivalent_keys_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/erase_tests.cpp b/test/unordered/erase_tests.cpp index ff02856a..d030c6aa 100644 --- a/test/unordered/erase_tests.cpp +++ b/test/unordered/erase_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/fwd_map_test.cpp b/test/unordered/fwd_map_test.cpp index 30acf14e..5ce1fb94 100644 --- a/test/unordered/fwd_map_test.cpp +++ b/test/unordered/fwd_map_test.cpp @@ -1,5 +1,6 @@ // Copyright 2008-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/fwd_set_test.cpp b/test/unordered/fwd_set_test.cpp index ecaaa3b1..86f4a9d1 100644 --- a/test/unordered/fwd_set_test.cpp +++ b/test/unordered/fwd_set_test.cpp @@ -1,5 +1,6 @@ // Copyright 2008-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/incomplete_test.cpp b/test/unordered/incomplete_test.cpp index 63058f03..3c5b09fa 100644 --- a/test/unordered/incomplete_test.cpp +++ b/test/unordered/incomplete_test.cpp @@ -1,5 +1,6 @@ // Copyright 2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/init_type_insert_tests.cpp b/test/unordered/init_type_insert_tests.cpp index efa1df37..e9920d38 100644 --- a/test/unordered/init_type_insert_tests.cpp +++ b/test/unordered/init_type_insert_tests.cpp @@ -1,3 +1,8 @@ + +// Copyright 2022 Christian Mazakas. +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or move at http://www.boost.org/LICENSE_1_0.txt) + #if !defined(BOOST_UNORDERED_FOA_TESTS) #error "This test is only for the FOA-style conatiners" #endif diff --git a/test/unordered/insert_hint_tests.cpp b/test/unordered/insert_hint_tests.cpp index 17cfd7ff..ebde259c 100644 --- a/test/unordered/insert_hint_tests.cpp +++ b/test/unordered/insert_hint_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2016 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/link_test_1.cpp b/test/unordered/link_test_1.cpp index 1d1daae7..d8032e73 100644 --- a/test/unordered/link_test_1.cpp +++ b/test/unordered/link_test_1.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/link_test_2.cpp b/test/unordered/link_test_2.cpp index fdeb529d..74de87c9 100644 --- a/test/unordered/link_test_2.cpp +++ b/test/unordered/link_test_2.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/load_factor_tests.cpp b/test/unordered/load_factor_tests.cpp index 26a12e36..461f883d 100644 --- a/test/unordered/load_factor_tests.cpp +++ b/test/unordered/load_factor_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/merge_tests.cpp b/test/unordered/merge_tests.cpp index 2f1f4302..32f4d685 100644 --- a/test/unordered/merge_tests.cpp +++ b/test/unordered/merge_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2016 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/move_tests.cpp b/test/unordered/move_tests.cpp index 9e899c19..53cac2ce 100644 --- a/test/unordered/move_tests.cpp +++ b/test/unordered/move_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2008-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or move at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/noexcept_tests.cpp b/test/unordered/noexcept_tests.cpp index d4bed53f..0cb4b521 100644 --- a/test/unordered/noexcept_tests.cpp +++ b/test/unordered/noexcept_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2013 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/rehash_tests.cpp b/test/unordered/rehash_tests.cpp index fb122c03..d543cdda 100644 --- a/test/unordered/rehash_tests.cpp +++ b/test/unordered/rehash_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/simple_tests.cpp b/test/unordered/simple_tests.cpp index e22f6db6..dbbf7a48 100644 --- a/test/unordered/simple_tests.cpp +++ b/test/unordered/simple_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/test/unordered/swap_tests.cpp b/test/unordered/swap_tests.cpp index cee0a42f..6f41c876 100644 --- a/test/unordered/swap_tests.cpp +++ b/test/unordered/swap_tests.cpp @@ -1,5 +1,6 @@ // Copyright 2006-2009 Daniel James. +// Copyright 2022 Christian Mazakas. // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)