forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rust: switch away from
Box
in Ref
implementation.
This is needed because we will introduce `TryFrom<Vec<T>>` for `Ref<[T]>`, which cannot be implemented with `Box`. For the drop implementation to be compatible with both constructors, we need them to use the same allocator. This is in preparation for deprecating `Arc<T>`. Signed-off-by: Wedson Almeida Filho <[email protected]>
- Loading branch information
Showing
1 changed file
with
26 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters