blob: 2970377b803a01ab698566dc90a78ad178c02621 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2025 Steven Le Rouzic
#
# SPDX-License-Identifier: BSD-3-Clause
package(
default_applicable_licenses = ["//:license"],
)
cc_library(
name = "utils",
hdrs = [
"counting_allocator.hpp",
"types.hpp",
],
deps = [
"//asl/base",
"//asl/memory:allocator",
],
visibility = ["//asl:__subpackages__"],
)
|