diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-01 00:27:14 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-01 00:50:25 +0100 |
commit | 62cc4b468b4e8653d8ef523fc4081572c6c1c7d8 (patch) | |
tree | 7e1e0816dc3a82db8d3b01f7819940418fd60957 /asl/containers | |
parent | eb285643ed5dab8125e9c6bc94abd7ef562096a5 (diff) |
Add BSD-3 license
Diffstat (limited to 'asl/containers')
-rw-r--r-- | asl/containers/BUILD.bazel | 4 | ||||
-rw-r--r-- | asl/containers/buffer.hpp | 4 | ||||
-rw-r--r-- | asl/containers/buffer_tests.cpp | 4 | ||||
-rw-r--r-- | asl/containers/hash_map.hpp | 4 | ||||
-rw-r--r-- | asl/containers/hash_map_tests.cpp | 4 | ||||
-rw-r--r-- | asl/containers/hash_set.hpp | 4 | ||||
-rw-r--r-- | asl/containers/hash_set_tests.cpp | 4 | ||||
-rw-r--r-- | asl/containers/intrusive_list.hpp | 4 | ||||
-rw-r--r-- | asl/containers/intrusive_list_tests.cpp | 4 |
9 files changed, 36 insertions, 0 deletions
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" |