Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Fix unused warnings on default features (#1618)
Fixes two unused import errors that only appeared when ignoring some features. We test `cargo clippy --all-features` on CI, so this didn't get flagged. ``` warning: unused import: `poly_func::PolyFuncTypeBase` --> hugr-core/src/types.rs:19:16 | 19 | pub(crate) use poly_func::PolyFuncTypeBase; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `signature::FuncTypeBase` --> hugr-core/src/types.rs:21:16 | 21 | pub(crate) use signature::FuncTypeBase; | ^^^ ```
- Loading branch information