diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-03-05 22:47:05 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-03-05 22:47:05 +0100 |
| commit | e8ed85e12de00f2fd304676d3b10968ce34ed764 (patch) | |
| tree | ddd36020c04f28fc8be3a5f46b42bc91e3018288 /oryxc/src/main.rs | |
| parent | 4f723801d751d520263ce0f14b2cf409f60ac77e (diff) | |
Implement an arena allocator
Diffstat (limited to 'oryxc/src/main.rs')
| -rw-r--r-- | oryxc/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oryxc/src/main.rs b/oryxc/src/main.rs index 109aed3..636b8ed 100644 --- a/oryxc/src/main.rs +++ b/oryxc/src/main.rs @@ -1,5 +1,6 @@ #![allow(unsafe_op_in_unsafe_fn)] +mod arena; mod compiler; mod errors; mod intern; |