diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-07-14 14:14:20 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-14 14:14:20 +0530 |
| commit | 103b8602b7e3cfc8301ab9e0981563bde3789ea7 (patch) | |
| tree | 700a5edfc59f759cd561d02b4d6c0953facec934 /library/alloc | |
| parent | f5e9cb53ab35bdf6e1bdd75894eca93ac7d8a0be (diff) | |
| parent | d431338b2521dee00b0758e1609e8af7320515d4 (diff) | |
| download | rust-103b8602b7e3cfc8301ab9e0981563bde3789ea7.tar.gz rust-103b8602b7e3cfc8301ab9e0981563bde3789ea7.zip | |
Rollup merge of #98315 - joshtriplett:stabilize-core-ffi-c, r=Mark-Simulacrum
Stabilize `core::ffi:c_*` and rexport in `std::ffi` This only stabilizes the base types, not the non-zero variants, since those have their own separate tracking issue and have not gone through FCP to stabilize.
Diffstat (limited to 'library/alloc')
| -rw-r--r-- | library/alloc/src/lib.rs | 1 | ||||
| -rw-r--r-- | library/alloc/tests/lib.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/library/alloc/src/lib.rs b/library/alloc/src/lib.rs index d3816d70b63..d68e0a9d66f 100644 --- a/library/alloc/src/lib.rs +++ b/library/alloc/src/lib.rs @@ -108,7 +108,6 @@ #![feature(const_refs_to_cell)] #![feature(core_c_str)] #![feature(core_intrinsics)] -#![feature(core_ffi_c)] #![feature(const_eval_select)] #![feature(const_pin)] #![feature(cstr_from_bytes_until_nul)] diff --git a/library/alloc/tests/lib.rs b/library/alloc/tests/lib.rs index 367cdcdcc06..bf5d0c941e9 100644 --- a/library/alloc/tests/lib.rs +++ b/library/alloc/tests/lib.rs @@ -12,7 +12,6 @@ #![feature(const_ptr_write)] #![feature(const_try)] #![feature(core_c_str)] -#![feature(core_ffi_c)] #![feature(core_intrinsics)] #![feature(drain_filter)] #![feature(exact_size_is_empty)] |
