about summary refs log tree commit diff
path: root/src/libstd/ffi
diff options
context:
space:
mode:
authorLzu Tao <taolzu@gmail.com>2019-10-29 13:01:54 +0000
committerLzu Tao <taolzu@gmail.com>2019-10-29 13:01:54 +0000
commitbc98c86a8b966fdd83756309ddb0e5b53dfccf37 (patch)
tree58750f31edecb8ba4dd7f19b8b3b73f2ef2409e9 /src/libstd/ffi
parenteb5ef813f0d6e3fe8edd3abb046a18f5b1a8cc48 (diff)
downloadrust-bc98c86a8b966fdd83756309ddb0e5b53dfccf37.tar.gz
rust-bc98c86a8b966fdd83756309ddb0e5b53dfccf37.zip
doc: use new feature gate for c_void type
Diffstat (limited to 'src/libstd/ffi')
-rw-r--r--src/libstd/ffi/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/ffi/mod.rs b/src/libstd/ffi/mod.rs
index 69fcfa8b39c..28d9906eb93 100644
--- a/src/libstd/ffi/mod.rs
+++ b/src/libstd/ffi/mod.rs
@@ -163,7 +163,7 @@ pub use self::c_str::{FromBytesWithNulError};
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use self::os_str::{OsString, OsStr};
 
-#[stable(feature = "raw_os", since = "1.1.0")]
+#[stable(feature = "core_c_void", since = "1.30.0")]
 pub use core::ffi::c_void;
 
 #[unstable(feature = "c_variadic",