diff options
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; |