We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8be4430 commit 401a86bCopy full SHA for 401a86b
Cargo.toml
@@ -10,9 +10,6 @@ repository = "https://github.com/phil-opp/volatile"
10
11
[dependencies]
12
13
-[features]
14
-const_fn = []
15
-
16
[package.metadata.release]
17
no-dev-version = true
18
pre-release-replacements = [
src/lib.rs
@@ -1,5 +1,3 @@
1
-#![cfg_attr(feature = "const_fn", feature(const_fn))]
2
3
//! Provides the wrapper type `Volatile`, which wraps a reference to any copy-able type and allows
4
//! for volatile memory access to wrapped value. Volatile memory accesses are never optimized away
5
//! by the compiler, and are useful in many low-level systems programming and concurrent contexts.
0 commit comments