Skip to content

Commit

Permalink
Fix summary feature conditional compilation (#475)
Browse files Browse the repository at this point in the history
The correct syntax is `#[cfg(feature = "summary")]`.
  • Loading branch information
casey committed Sep 24, 2019
1 parent 1d063cc commit 2818d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ mod warning;

pub use crate::run::run;

#[cfg(summary)]
#[cfg(feature = "summary")]
pub mod summary;

0 comments on commit 2818d4d

Please sign in to comment.