diff --git a/benchmark/src/benchmark_main.cc b/benchmark/src/benchmark_main.cc index 0f584db..a8cad2d 100644 --- a/benchmark/src/benchmark_main.cc +++ b/benchmark/src/benchmark_main.cc @@ -1,10 +1,9 @@ // =============================== TEST ROOT ================================ // // Project: The Experimental Bit Algorithms Library -// Name: test_root.cc +// Name: benchmark_main.cc // Description: Brings in all of the test headers into an object to be linked // with the test main -// Creator: Vincent Reverdy -// Contributor(s): Bryce Kille [2019] +// Contributor(s): Bryce Kille // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/bit_algorithm.hpp b/include/bitlib/bit-algorithms/bit_algorithm.hpp index 9e51c5c..51cc661 100644 --- a/include/bitlib/bit-algorithms/bit_algorithm.hpp +++ b/include/bitlib/bit-algorithms/bit_algorithm.hpp @@ -2,7 +2,6 @@ // Project: The C++ Bit Library // Name: bit_algorithm.hpp // Description: Optimized versions of algorithms for bit manipulation -// Creator: Vincent Reverdy // Contributor(s): Vincent Reverdy [2015-2017] // Maghav Kumar [2016-2017] // Bryce Kille [2019] diff --git a/include/bitlib/bit-algorithms/bit_algorithm_details.hpp b/include/bitlib/bit-algorithms/bit_algorithm_details.hpp index c49e022..984c499 100644 --- a/include/bitlib/bit-algorithms/bit_algorithm_details.hpp +++ b/include/bitlib/bit-algorithms/bit_algorithm_details.hpp @@ -2,9 +2,7 @@ // Project: The Experimental Bit Algorithms Library // Name: bit_algorithm_details.hpp // Description: A set of utilities to assist in writing algorithms -// Creator: Vincent Reverdy // Contributor(s): Vincent Reverdy [2019] -// Collin Gress [2019] // Bryce Kille [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/copy.hpp b/include/bitlib/bit-algorithms/copy.hpp index 7bdea6f..2d50751 100644 --- a/include/bitlib/bit-algorithms/copy.hpp +++ b/include/bitlib/bit-algorithms/copy.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: copy.hpp // Description: Implementation of copy, copy_if, copy_n and copy_backward -// Creator: Vincent Reverdy // Contributor: Bryce Kille [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/copy_backward.hpp b/include/bitlib/bit-algorithms/copy_backward.hpp index 971fb91..55bd6f6 100644 --- a/include/bitlib/bit-algorithms/copy_backward.hpp +++ b/include/bitlib/bit-algorithms/copy_backward.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: copy_backward.hpp // Description: bit_iterator overloads for std::copy_backward -// Creator: Vincent Reverdy // Contributor(s): // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/debug_utils.hpp b/include/bitlib/bit-algorithms/debug_utils.hpp index a621bc3..74e590d 100644 --- a/include/bitlib/bit-algorithms/debug_utils.hpp +++ b/include/bitlib/bit-algorithms/debug_utils.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: debug_utils.hpp // Description: Utilities useful for debugging -// Creator: Vincent Reverdy // Contributor: Bryce Kille [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/equal.hpp b/include/bitlib/bit-algorithms/equal.hpp index b4c5e47..e3fb144 100644 --- a/include/bitlib/bit-algorithms/equal.hpp +++ b/include/bitlib/bit-algorithms/equal.hpp @@ -1,7 +1,6 @@ // ================================= EQUAL =================================== // // Project: The Experimental Bit Algorithms Library // Name: equal.hpp -// Creator: Vincent Reverdy // Contributor: Bryce Kille [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/fill.hpp b/include/bitlib/bit-algorithms/fill.hpp index 70dcd9d..08f9c61 100644 --- a/include/bitlib/bit-algorithms/fill.hpp +++ b/include/bitlib/bit-algorithms/fill.hpp @@ -2,9 +2,8 @@ // Project: The Experimental Bit Algorithms Library // Name: fill.hpp // Description: bit_iterator overloads for std::fill -// Creator: Vincent Reverdy -// Contributor(s): Vincent Reverdy [2019] -// Bryce Kille [2019] +// Contributor(s): Bryce Kille +// Vincent Reverdy [2019] // License: BSD 3-Clause License // ========================================================================== // #ifndef _FILL_HPP_INCLUDED diff --git a/include/bitlib/bit-algorithms/move.hpp b/include/bitlib/bit-algorithms/move.hpp index def87ef..401cbfd 100644 --- a/include/bitlib/bit-algorithms/move.hpp +++ b/include/bitlib/bit-algorithms/move.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: move.hpp // Description: bit_iterator overloads for std::move -// Creator: Vincent Reverdy // Contributor(s): // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/reverse.hpp b/include/bitlib/bit-algorithms/reverse.hpp index 3cc2173..37dacb7 100644 --- a/include/bitlib/bit-algorithms/reverse.hpp +++ b/include/bitlib/bit-algorithms/reverse.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: copy.hpp // Description: Implementation of reverse -// Creator: Vincent Reverdy // Contributor: Vincent Reverdy [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/rotate.hpp b/include/bitlib/bit-algorithms/rotate.hpp index 5466f7d..f9509ba 100644 --- a/include/bitlib/bit-algorithms/rotate.hpp +++ b/include/bitlib/bit-algorithms/rotate.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: rotate.hpp // Description: bit_iterator overloads for std::rotate -// Creator: Vincent Reverdy // Contributor(s): Bryce Kille [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/shift.hpp b/include/bitlib/bit-algorithms/shift.hpp index 081188f..e598e0c 100644 --- a/include/bitlib/bit-algorithms/shift.hpp +++ b/include/bitlib/bit-algorithms/shift.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: shift.hpp // Description: Implementation of shift_left and shift_right -// Creator: Vincent Reverdy // Contributor(s): Bryce Kille [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/swap_ranges.hpp b/include/bitlib/bit-algorithms/swap_ranges.hpp index 799ea47..67cd5a0 100644 --- a/include/bitlib/bit-algorithms/swap_ranges.hpp +++ b/include/bitlib/bit-algorithms/swap_ranges.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: swap_ranges.hpp // Description: bit_iterator overloads for std::swap_ranges -// Creator: Vincent Reverdy // Contributor(s): Bryce Kille [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-algorithms/transform.hpp b/include/bitlib/bit-algorithms/transform.hpp index 4a71cf8..8857788 100644 --- a/include/bitlib/bit-algorithms/transform.hpp +++ b/include/bitlib/bit-algorithms/transform.hpp @@ -2,8 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: transform.hpp // Description: bit_iterator overloads for std::transform -// Creator: Vincent Reverdy -// Contributor(s): // License: BSD 3-Clause License // ========================================================================== // #ifndef _TRANSFORM_HPP_INCLUDED diff --git a/include/bitlib/bit-algorithms/type_traits.hpp b/include/bitlib/bit-algorithms/type_traits.hpp index 2ddbe07..0cd1fb2 100644 --- a/include/bitlib/bit-algorithms/type_traits.hpp +++ b/include/bitlib/bit-algorithms/type_traits.hpp @@ -2,7 +2,6 @@ // Project: The Experimental Bit Algorithms Library // Name: type_traits.hpp // Description: Type traits for bits -// Creator: Vincent Reverdy // Contributor(s): Vincent Reverdy [2019] // License: BSD 3-Clause License // ========================================================================== // diff --git a/include/bitlib/bit-containers/bit-containers.hpp b/include/bitlib/bit-containers/bit-containers.hpp index d2fbc37..bbbd540 100644 --- a/include/bitlib/bit-containers/bit-containers.hpp +++ b/include/bitlib/bit-containers/bit-containers.hpp @@ -2,8 +2,6 @@ // Project: The Bit Algorithms Library // Name: bit-containers.hpp // Description: Brings in all of the container headers together -// Creator: Vincent Reverdy -// Contributor(s): Bryce Kille [2019] // License: BSD 3-Clause License // ========================================================================== // #ifndef _BIT_CONTAINERS_HPP_INCLUDED diff --git a/include/bitlib/bit-containers/bit_vector.hpp b/include/bitlib/bit-containers/bit_vector.hpp index f68d076..f971c49 100644 --- a/include/bitlib/bit-containers/bit_vector.hpp +++ b/include/bitlib/bit-containers/bit_vector.hpp @@ -2,8 +2,7 @@ // Project: The Experimental Bit Algorithms Library // \file bit_vector.hpp // Description: Implementation of bit_vector -// Creator: Vincent Reverdy -// Contributor: Bryce Kille [2019] +// Contributor: Bryce Kille // License: BSD 3-Clause License // ========================================================================== // #ifndef _BIT_VECTOR_HPP_INCLUDED diff --git a/test/src/fixtures.hpp b/test/src/fixtures.hpp index 1c9e00f..b8cd594 100644 --- a/test/src/fixtures.hpp +++ b/test/src/fixtures.hpp @@ -1,7 +1,7 @@ // =============================== FIXTURES ================================= // // Project: The Experimental Bit Algorithms Library // Description: Fixtures for testing -// Creator: Bryce Kille [2019] +// Contributor(s): Bryce Kille // License: BSD 3-Clause License // ========================================================================== // #ifndef _FIXTURES_HPP_INCLUDED diff --git a/test/src/test-rotate.cpp b/test/src/test-rotate.cpp index fdc9373..8ae3a55 100644 --- a/test/src/test-rotate.cpp +++ b/test/src/test-rotate.cpp @@ -2,8 +2,7 @@ // Project: The Experimental Bit Algorithms Library // Name: rotate.hpp // Description: Tests for rotate algorithms -// Creator: Vincent Reverdy -// Contributor(s): Bryce Kille [2019] +// Contributor(s): Bryce Kille // License: BSD 3-Clause License // ========================================================================== // diff --git a/test/src/vector_test.cpp b/test/src/vector_test.cpp index c7dff71..666b031 100644 --- a/test/src/vector_test.cpp +++ b/test/src/vector_test.cpp @@ -1,7 +1,7 @@ // =============================== FIXTURES ================================= // // Project: The Experimental Bit Algorithms Library // Description: Fixtures for testing -// Creator: Bryce Kille [2019] +// Contributor(s): Bryce Kille // License: BSD 3-Clause License // ========================================================================== //