LeviLamina
Loading...
Searching...
No Matches
NonLocalAllocator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bgfx {
6
8public:
9 // NonLocalAllocator inner types declare
10 // clang-format off
11 struct Allocation;
12 struct Free;
13 // clang-format on
14
15 // NonLocalAllocator inner types define
16 struct Allocation {};
17
18 struct Free {};
19};
20
21} // namespace bgfx
Definition NonLocalAllocator.h:16
Definition NonLocalAllocator.h:18
Definition NonLocalAllocator.h:7