Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8db68da
Reexport types from `c_size_t` in `std`
tgross35 Apr 28, 2025
a35675d
Remove `'static` bounds on `P`.
nnethercote May 26, 2025
6973fa0
Remove `P::map`.
nnethercote May 26, 2025
0f285e3
Remove the one use of `P<[T]>`.
nnethercote May 26, 2025
6859750
Remove support for `P<[T]>`.
nnethercote May 26, 2025
c42d1fc
Remove unused `P` stuff.
nnethercote May 26, 2025
991c91f
Reduce `P<T>` to a typedef of `Box<T>`.
nnethercote May 26, 2025
35cb28b
Verbose suggestion to make param `const`
estebank Jun 4, 2025
91b77e0
use helper macro for flat_map vs visit_list, initial dedups
fee1-dead Jun 5, 2025
8bce225
Update `InterpCx::project_field` to take `FieldIdx`
scottmcm Jun 4, 2025
0ffff46
remove extraneous text
tshepang Jun 6, 2025
8a7262c
deduplicate more `walk_*` methods in AST visit
fee1-dead Jun 5, 2025
f9cf096
Update compiler/rustc_abi/src/layout/ty.rs
scottmcm Jun 6, 2025
b285908
fix typo
ada4a Jun 6, 2025
28a2e1e
Compute number of digits instead of relying on constant value for u12…
GuillaumeGomez Jun 6, 2025
8fc1bed
Reduce confusion of some drop order tests
shepmaster May 29, 2025
2a5225a
rustc_lexer: typo fix + small cleanups
hkBst Jun 6, 2025
910a59d
unsafe keyword docs: emphasize that an unsafe fn in a trait does not …
RalfJung May 23, 2025
3fee6cc
Rollup merge of #140418 - tgross35:std-c-size_t, r=workingjubilee
GuillaumeGomez Jun 6, 2025
15d9b96
Rollup merge of #141471 - RalfJung:unsafe-fn-in-trait, r=traviscross
GuillaumeGomez Jun 6, 2025
93ca0af
Rollup merge of #141603 - nnethercote:reduce-P, r=fee1-dead
GuillaumeGomez Jun 6, 2025
4ce2db5
Rollup merge of #142043 - estebank:const-suggestion, r=wesleywiser
GuillaumeGomez Jun 6, 2025
2946ce2
Rollup merge of #142086 - fee1-dead-contrib:ast-visitor-dedup, r=oli-obk
GuillaumeGomez Jun 6, 2025
3a6f1b0
Rollup merge of #142103 - scottmcm:fieldidx-in-interp, r=oli-obk
GuillaumeGomez Jun 6, 2025
b4b2d0e
Rollup merge of #142105 - tshepang:basic-usage, r=workingjubilee
GuillaumeGomez Jun 6, 2025
c1e67ad
Rollup merge of #142112 - ada4a:patch-1, r=wesleywiser
GuillaumeGomez Jun 6, 2025
b6ace05
Rollup merge of #142113 - shepmaster:drop-order-test-confusion, r=jie…
GuillaumeGomez Jun 6, 2025
6bbef98
Rollup merge of #142114 - GuillaumeGomez:u128-const, r=Urgau
GuillaumeGomez Jun 6, 2025
22d53ad
Rollup merge of #142118 - hkBst:lexer-patch1, r=oli-obk
GuillaumeGomez Jun 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions library/std/src/ffi/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ pub use core::ffi::{
c_char, c_double, c_float, c_int, c_long, c_longlong, c_schar, c_short, c_uchar, c_uint,
c_ulong, c_ulonglong, c_ushort,
};
#[unstable(feature = "c_size_t", issue = "88345")]
pub use core::ffi::{c_ptrdiff_t, c_size_t, c_ssize_t};

#[doc(inline)]
#[stable(feature = "cstr_from_bytes_until_nul", since = "1.69.0")]
Expand Down