about summary refs log tree commit diff
path: root/library/std/src/lazy.rs
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2022-10-08 15:55:15 +0200
committerest31 <MTest31@outlook.com>2022-10-08 15:55:15 +0200
commit4d9d7bf312929ec55987b586f249c547b47140f9 (patch)
tree10a433d4bfdbb2e8759bd6195bd25b2c1e7230bf /library/std/src/lazy.rs
parent58fb351cad389b660c82966e28e213e77dfc1c57 (diff)
downloadrust-4d9d7bf312929ec55987b586f249c547b47140f9.tar.gz
rust-4d9d7bf312929ec55987b586f249c547b47140f9.zip
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.
Diffstat (limited to 'library/std/src/lazy.rs')
-rw-r--r--library/std/src/lazy.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/std/src/lazy.rs b/library/std/src/lazy.rs
deleted file mode 100644
index f8c06c3f9ae..00000000000
--- a/library/std/src/lazy.rs
+++ /dev/null
@@ -1 +0,0 @@
-//! Lazy values and one-time initialization of static data.