Skip to content

Commit 7d1680f

Browse files
authored
Rollup merge of #102812 - est31:remove_lazy, r=dtolnay
Remove empty core::lazy and std::lazy PR #98165 with commits 7c360dc117d554a11f7193505da0835c4b890c6f and c1a2db3372a4d6896744919284f3287650a38ab7 has moved all of the components of these modules into different places, namely {std,core}::sync and {std,core}::cell. The empty modules remained. As they are unstable, we can simply remove them.
2 parents f06d7dd + 5ea7215 commit 7d1680f

File tree

4 files changed

+0
-7
lines changed

4 files changed

+0
-7
lines changed

core/src/lazy.rs

-1
This file was deleted.

core/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,6 @@ pub mod cell;
326326
pub mod char;
327327
pub mod ffi;
328328
pub mod iter;
329-
#[unstable(feature = "once_cell", issue = "74465")]
330-
pub mod lazy;
331329
pub mod option;
332330
pub mod panic;
333331
pub mod panicking;

std/src/lazy.rs

-1
This file was deleted.

std/src/lib.rs

-3
Original file line numberDiff line numberDiff line change
@@ -529,9 +529,6 @@ pub mod process;
529529
pub mod sync;
530530
pub mod time;
531531

532-
#[unstable(feature = "once_cell", issue = "74465")]
533-
pub mod lazy;
534-
535532
// Pull in `std_float` crate into libstd. The contents of
536533
// `std_float` are in a different repository: rust-lang/portable-simd.
537534
#[path = "../../portable-simd/crates/std_float/src/lib.rs"]

0 commit comments

Comments
 (0)