diff options
Diffstat (limited to 'asl/memory')
-rw-r--r-- | asl/memory/BUILD.bazel | 4 | ||||
-rw-r--r-- | asl/memory/allocator.cpp | 4 | ||||
-rw-r--r-- | asl/memory/allocator.hpp | 4 | ||||
-rw-r--r-- | asl/memory/layout.hpp | 4 | ||||
-rw-r--r-- | asl/memory/memory.hpp | 4 |
5 files changed, 20 insertions, 0 deletions
diff --git a/asl/memory/BUILD.bazel b/asl/memory/BUILD.bazel index 0a198bc..1d90c3b 100644 --- a/asl/memory/BUILD.bazel +++ b/asl/memory/BUILD.bazel @@ -1,3 +1,7 @@ +# Copyright 2025 Steven Le Rouzic +# +# SPDX-License-Identifier: BSD-3-Clause + cc_library( name = "memory", hdrs = [ diff --git a/asl/memory/allocator.cpp b/asl/memory/allocator.cpp index 504202d..077b539 100644 --- a/asl/memory/allocator.cpp +++ b/asl/memory/allocator.cpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #include "asl/memory/allocator.hpp" #include "asl/base/assert.hpp" #include "asl/memory/layout.hpp" diff --git a/asl/memory/allocator.hpp b/asl/memory/allocator.hpp index d39fa23..1628a8a 100644 --- a/asl/memory/allocator.hpp +++ b/asl/memory/allocator.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/memory/layout.hpp b/asl/memory/layout.hpp index af867d8..9a7b404 100644 --- a/asl/memory/layout.hpp +++ b/asl/memory/layout.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/memory/memory.hpp b/asl/memory/memory.hpp index de8e07d..bf4e125 100644 --- a/asl/memory/memory.hpp +++ b/asl/memory/memory.hpp @@ -1,3 +1,7 @@ +// Copyright 2025 Steven Le Rouzic +// +// SPDX-License-Identifier: BSD-3-Clause + #pragma once #include "asl/base/integers.hpp" |