Skip to content

Commit d849403

Browse files
CoAlloc: Vec: Fixing COOP_PREFERRED
1 parent 59f9ed5 commit d849403

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

library/alloc/src/vec/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,7 @@ pub type CoVec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: All
424424
Vec<T, A, true>;
425425

426426
/// "Plain" Vec. Not "cooperative" - not carrying extra data to assist the allocator.
427+
/// FIXME after cleanup, see if we still use this in core:: and/or alloc::
427428
#[unstable(feature = "global_co_alloc_plvec", issue = "none")]
428429
pub type PlVec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global> =
429430
Vec<T, A, false>;

0 commit comments

Comments
 (0)