Skip to content

Commit

Permalink
fix(reduce): correct feature gate (#20554)
Browse files Browse the repository at this point in the history
* fix(reduce): correct feature gate

* one more tweak
  • Loading branch information
pront committed May 23, 2024
1 parent 8b4a3ba commit 14d8f31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/transforms/reduce/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#[cfg(feature = "transforms-reduce")]
#[cfg(any(feature = "transforms-reduce", feature = "transforms-impl-reduce"))]
pub mod config;

#[cfg(feature = "transforms-reduce")]
#[cfg(any(feature = "transforms-reduce", feature = "transforms-impl-reduce"))]
pub mod merge_strategy;

#[cfg(feature = "transforms-impl-reduce")]
Expand Down

0 comments on commit 14d8f31

Please sign in to comment.