Skip to content

Commit 9845c7c

Browse files
committed
Fix name of cfg value
1 parent 722ec58 commit 9845c7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/binary_heap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@
146146
//! }
147147
//! ```
148148
149-
#![cfg_attr(has_rustc_1_52, deny(unsafe_op_in_unsafe_fn))]
150-
#![cfg_attr(not(has_rustc_1_52), allow(unused_unsafe))]
149+
#![cfg_attr(rustc_1_52, deny(unsafe_op_in_unsafe_fn))]
150+
#![cfg_attr(not(rustc_1_52), allow(unused_unsafe))]
151151
#![allow(clippy::needless_doctest_main)]
152152
#![allow(missing_docs)]
153153
// #![stable(feature = "rust1", since = "1.0.0")]

0 commit comments

Comments
 (0)