Commit 3dcb652a authored by Asahi Lina's avatar Asahi Lina Committed by Miguel Ojeda

rust: Add SPDX headers to alloc::vec::{spec_extend, set_len_on_drop}

Add the missing SPDX headers to these modules, which were just imported
from the Rust stdlib. Doing this in a separate commit makes it easier to
audit that the files have not been modified in the original import.

See the preceding two commits for attribution and licensing details.
Signed-off-by: default avatarAsahi Lina <lina@asahilina.net>
Link: https://lore.kernel.org/r/20230224-rust-vec-v1-3-733b5b5a57c5@asahilina.net
[ Reworded for typo. ]
Signed-off-by: default avatarMiguel Ojeda <ojeda@kernel.org>
parent ae12ae13
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Set the length of the vec when the `SetLenOnDrop` value goes out of scope.
//
// The idea is: The length field in SetLenOnDrop is a local variable
......
// SPDX-License-Identifier: Apache-2.0 OR MIT
use crate::alloc::Allocator;
use core::iter::TrustedLen;
use core::ptr::{self};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment