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/hashing/BUILD.bazel | 4 ++++ asl/hashing/hash.hpp | 4 ++++ asl/hashing/hash_tests.cpp | 4 ++++ 3 files changed, 12 insertions(+) (limited to 'asl/hashing') diff --git a/asl/hashing/BUILD.bazel b/asl/hashing/BUILD.bazel index 6b9b410..18be389 100644 --- a/asl/hashing/BUILD.bazel +++ b/asl/hashing/BUILD.bazel @@ -1,3 +1,7 @@ +# Copyright 2025 Steven Le Rouzic +# +# SPDX-License-Identifier: BSD-3-Clause + cc_library( name = "hashing", hdrs = [ diff --git a/asl/hashing/hash.hpp b/asl/hashing/hash.hpp index 60550d0..d4b0910 100644 --- a/asl/hashing/hash.hpp +++ b/asl/hashing/hash.hpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #pragma once #include "asl/base/integers.hpp" diff --git a/asl/hashing/hash_tests.cpp b/asl/hashing/hash_tests.cpp index 9efb497..e4e69bf 100644 --- a/asl/hashing/hash_tests.cpp +++ b/asl/hashing/hash_tests.cpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #include "asl/testing/testing.hpp" #include "asl/hashing/hash.hpp" #include "asl/strings/string_view.hpp" -- cgit