diff --git a/nac3core/src/codegen/object/slice.rs b/nac3core/src/codegen/object/slice.rs index 266acc91..5b65eea4 100644 --- a/nac3core/src/codegen/object/slice.rs +++ b/nac3core/src/codegen/object/slice.rs @@ -33,10 +33,6 @@ impl<'ctx, N: IntKind<'ctx>> StructKind<'ctx> for Slice { /// A Rust structure that has [`Slice`] utilities and looks like a [`Slice`] but /// `start`, `stop` and `step` are held by LLVM registers only and possibly /// [`Option::None`] if unspecified. -/// -/// This structure exists because many implementations use [`Slice`] utilities but -/// it might not be good to alloca an actual [`Slice`] value on the stack in order -/// to perform calculations. #[derive(Debug, Clone)] pub struct RustSlice<'ctx, N: IntKind<'ctx>> { pub start: Option>>,