From 62cc4b468b4e8653d8ef523fc4081572c6c1c7d8 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sat, 1 Mar 2025 00:27:14 +0100 Subject: Add BSD-3 license --- asl/containers/BUILD.bazel | 4 ++++ asl/containers/buffer.hpp | 4 ++++ asl/containers/buffer_tests.cpp | 4 ++++ asl/containers/hash_map.hpp | 4 ++++ asl/containers/hash_map_tests.cpp | 4 ++++ asl/containers/hash_set.hpp | 4 ++++ asl/containers/hash_set_tests.cpp | 4 ++++ asl/containers/intrusive_list.hpp | 4 ++++ asl/containers/intrusive_list_tests.cpp | 4 ++++ 9 files changed, 36 insertions(+) (limited to 'asl/containers') diff --git a/asl/containers/BUILD.bazel b/asl/containers/BUILD.bazel index 792b812..feb5711 100644 --- a/asl/containers/BUILD.bazel +++ b/asl/containers/BUILD.bazel @@ -1,3 +1,7 @@ +# Copyright 2025 Steven Le Rouzic +# +# SPDX-License-Identifier: BSD-3-Clause + cc_library( name = "buffer", hdrs = [ diff --git a/asl/containers/buffer.hpp b/asl/containers/buffer.hpp index 3954d35..8bdb63e 100644 --- a/asl/containers/buffer.hpp +++ b/asl/containers/buffer.hpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #pragma once #include "asl/base/meta.hpp" diff --git a/asl/containers/buffer_tests.cpp b/asl/containers/buffer_tests.cpp index fd8ad45..23fe5af 100644 --- a/asl/containers/buffer_tests.cpp +++ b/asl/containers/buffer_tests.cpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #include "asl/containers/buffer.hpp" #include "asl/testing/testing.hpp" diff --git a/asl/containers/hash_map.hpp b/asl/containers/hash_map.hpp index a59e580..77e5512 100644 --- a/asl/containers/hash_map.hpp +++ b/asl/containers/hash_map.hpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #pragma once #include "asl/base/utility.hpp" diff --git a/asl/containers/hash_map_tests.cpp b/asl/containers/hash_map_tests.cpp index 6cb7fe1..9652e2f 100644 --- a/asl/containers/hash_map_tests.cpp +++ b/asl/containers/hash_map_tests.cpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #include "asl/testing/testing.hpp" #include "asl/containers/hash_map.hpp" diff --git a/asl/containers/hash_set.hpp b/asl/containers/hash_set.hpp index 97a37f2..6c46aac 100644 --- a/asl/containers/hash_set.hpp +++ b/asl/containers/hash_set.hpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #pragma once #include "asl/base/annotations.hpp" diff --git a/asl/containers/hash_set_tests.cpp b/asl/containers/hash_set_tests.cpp index 2baab94..d9462d5 100644 --- a/asl/containers/hash_set_tests.cpp +++ b/asl/containers/hash_set_tests.cpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #include "asl/containers/hash_set.hpp" #include "asl/testing/testing.hpp" #include "asl/tests/types.hpp" diff --git a/asl/containers/intrusive_list.hpp b/asl/containers/intrusive_list.hpp index 99509b8..ce0c133 100644 --- a/asl/containers/intrusive_list.hpp +++ b/asl/containers/intrusive_list.hpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #pragma once #include "asl/base/meta.hpp" diff --git a/asl/containers/intrusive_list_tests.cpp b/asl/containers/intrusive_list_tests.cpp index 373913c..5d2d97b 100644 --- a/asl/containers/intrusive_list_tests.cpp +++ b/asl/containers/intrusive_list_tests.cpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #include "asl/containers/intrusive_list.hpp" #include "asl/testing/testing.hpp" -- cgit