lazy: remove #[cfg(doc)]

This commit is contained in:
AF 2023-07-30 11:22:32 +00:00
parent a64478d6f2
commit 74d15d5a5a

View File

@ -6,12 +6,12 @@
//! actually fully cancel the "unnecessary" computation. //! actually fully cancel the "unnecessary" computation.
//! //!
//! For stackless execution see [`stackless`]. //! For stackless execution see [`stackless`].
//!
//! [`stackless`]: crate::func::instances::stackless
use std::{cell::RefCell, rc::Rc}; use std::{cell::RefCell, rc::Rc};
use crate::func::class_prelude::*; use crate::func::class_prelude::*;
#[cfg(doc)]
use crate::func::instances::*;
pub struct LazyInstance; pub struct LazyInstance;