diff options
| author | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2018-12-11 10:32:39 +0100 |
|---|---|---|
| committer | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2018-12-11 10:32:39 +0100 |
| commit | 799cadb2bd980d1bcdcc831c2d0e50ec3b27527b (patch) | |
| tree | c3f16114ab31c7785299f10ea86aebd30ffd228b /src/libstd/io | |
| parent | 4c0116e13ffd4b84e6691cd3b1f09269c4e76728 (diff) | |
| download | rust-799cadb2bd980d1bcdcc831c2d0e50ec3b27527b.tar.gz rust-799cadb2bd980d1bcdcc831c2d0e50ec3b27527b.zip | |
Remove unnecessary feature gates from const fns
Diffstat (limited to 'src/libstd/io')
| -rw-r--r-- | src/libstd/io/lazy.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/io/lazy.rs b/src/libstd/io/lazy.rs index c2aaeb98907..24965ff6931 100644 --- a/src/libstd/io/lazy.rs +++ b/src/libstd/io/lazy.rs @@ -26,7 +26,6 @@ const fn done<T>() -> *mut Arc<T> { 1_usize as *mut _ } unsafe impl<T> Sync for Lazy<T> {} impl<T> Lazy<T> { - #[unstable(feature = "sys_internals", issue = "0")] // FIXME: min_const_fn pub const fn new() -> Lazy<T> { Lazy { lock: Mutex::new(), |
