Skip to content

Commit

Permalink
Rename coverage cfg to coverage_nightly (#19)
Browse files Browse the repository at this point in the history
Co-authored-by: Teodor Tanasoaia <[email protected]>
  • Loading branch information
emarcotte and teoxoy authored Dec 9, 2022
1 parent 38e07b1 commit cdae109
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![cfg_attr(docs, feature(doc_cfg))]
#![cfg_attr(coverage, feature(no_coverage))]
#![cfg_attr(coverage_nightly, feature(no_coverage))]
#![deny(rustdoc::broken_intra_doc_links)]
#![warn(
future_incompatible,
Expand Down
2 changes: 1 addition & 1 deletion src/utils.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#[track_caller]
#[cfg_attr(coverage, no_coverage)]
#[cfg_attr(coverage_nightly, no_coverage)]
pub const fn consume_zsts<const N: usize>(_: [(); N]) {}

#[doc(hidden)]
Expand Down

0 comments on commit cdae109

Please sign in to comment.