blob: 50becfe009610d6581a0081b6c1462145e123076 (
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
#include "asl/testing/testing.hpp"
#include "asl/handle_pool/index_pool.hpp"
enum TestHandleType : uint8_t
{
kType1,
kType2,
};
using TestHandle = asl::index_pool_handle<10, 14, TestHandleType>;
using Pool = asl::IndexPool<TestHandle>;
ASL_TEST(test)
{
}
|