diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-08-30 23:35:45 +1200 |
| commit | f5f789540ad7d3f7f4f855c9db69d65cfc190ee0 (patch) | |
| tree | f532988e9a35a0d2c58efbad9daf6e66288f4a1f /src/constants.rs | |
| parent | c9ab8d38765c7c80f2ea9083ce8d326f407110ac (diff) | |
feat(engine): allow choosing engine per executor call
Diffstat (limited to '')
| -rw-r--r-- | src/constants.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/constants.rs b/src/constants.rs deleted file mode 100644 index 6ca1bc5..0000000 --- a/src/constants.rs +++ /dev/null @@ -1,9 +0,0 @@ -//! Constants and types used throughout the Brainfuck interpreter. - -/// The inner type used by a Brainfuck tape. -#[cfg(feature = "u8-engine")] -pub type TapeInner = u8; - -/// The inner type used by a Brainfuck tape. -#[cfg(feature = "u16-engine")] -pub type TapeInner = u16; |