about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorTaylor Cramer <cramertj@google.com>2018-12-26 12:20:38 -0800
committerTaylor Cramer <cramertj@google.com>2018-12-26 12:20:38 -0800
commit11f4d3e40ef663e9365fb70f36cf22da3b673de0 (patch)
treeb6d9896a460c63e0de2269851275b1454b638dee /src/libstd
parent79d8a0fcefa5134db2a94739b1d18daa01fc6e9f (diff)
downloadrust-11f4d3e40ef663e9365fb70f36cf22da3b673de0.tar.gz
rust-11f4d3e40ef663e9365fb70f36cf22da3b673de0.zip
Add Unpin to std prelude, not just core
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/prelude/v1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/prelude/v1.rs b/src/libstd/prelude/v1.rs
index 0c3b164f654..3001c899f62 100644
--- a/src/libstd/prelude/v1.rs
+++ b/src/libstd/prelude/v1.rs
@@ -9,7 +9,7 @@
 // Re-exported core operators
 #[stable(feature = "rust1", since = "1.0.0")]
 #[doc(no_inline)]
-pub use marker::{Copy, Send, Sized, Sync};
+pub use marker::{Copy, Send, Sized, Sync, Unpin};
 #[stable(feature = "rust1", since = "1.0.0")]
 #[doc(no_inline)]
 pub use ops::{Drop, Fn, FnMut, FnOnce};