From f5f789540ad7d3f7f4f855c9db69d65cfc190ee0 Mon Sep 17 00:00:00 2001 From: Sophie Forrest Date: Fri, 30 Aug 2024 23:35:45 +1200 Subject: feat(engine): allow choosing engine per executor call --- src/constants.rs | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 src/constants.rs (limited to 'src/constants.rs') 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; -- cgit 1.4.1