Skip to content

Commit

Permalink
chore: Fix unused warnings on default features
Browse files Browse the repository at this point in the history
  • Loading branch information
aborgna-q committed Oct 29, 2024
1 parent 87150fa commit ff60b97
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions hugr-core/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@ use crate::types::type_param::check_type_arg;
use crate::utils::display_list_with_separator;
pub use check::SumTypeError;
pub use custom::CustomType;
pub(crate) use poly_func::PolyFuncTypeBase;
pub use poly_func::{PolyFuncType, PolyFuncTypeRV};
pub(crate) use signature::FuncTypeBase;
pub use signature::{FuncValueType, Signature};
use smol_str::SmolStr;
pub use type_param::TypeArg;
pub use type_row::{TypeRow, TypeRowRV};

// Unused in --no-features
#[allow(unused_imports)]
pub(crate) use poly_func::PolyFuncTypeBase;
#[allow(unused_imports)]
pub(crate) use signature::FuncTypeBase;

use itertools::FoldWhile::{Continue, Done};
use itertools::{repeat_n, Itertools};
#[cfg(test)]
Expand Down

0 comments on commit ff60b97

Please sign in to comment.