Skip to content

Commit 931d271

Browse files
committed
Add missing #[allow(missing_docs)] on hack functions in alloc
1 parent 181dc26 commit 931d271

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

alloc/src/slice.rs

+2
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ pub(crate) mod hack {
9696
// We shouldn't add inline attribute to this since this is used in
9797
// `vec!` macro mostly and causes perf regression. See #71204 for
9898
// discussion and perf results.
99+
#[allow(missing_docs)]
99100
pub fn into_vec<T, A: Allocator>(b: Box<[T], A>) -> Vec<T, A> {
100101
unsafe {
101102
let len = b.len();
@@ -105,6 +106,7 @@ pub(crate) mod hack {
105106
}
106107

107108
#[cfg(not(no_global_oom_handling))]
109+
#[allow(missing_docs)]
108110
#[inline]
109111
pub fn to_vec<T: ConvertVec, A: Allocator>(s: &[T], alloc: A) -> Vec<T, A> {
110112
T::to_vec(s, alloc)

alloc/src/string.rs

+1
Original file line numberDiff line numberDiff line change
@@ -508,6 +508,7 @@ impl String {
508508
// NB see the slice::hack module in slice.rs for more information
509509
#[inline]
510510
#[cfg(test)]
511+
#[allow(missing_docs)]
511512
pub fn from_str(_: &str) -> String {
512513
panic!("not available with cfg(test)");
513514
}

std/src/io/buffered/bufreader.rs

+1
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ impl<R: ?Sized> BufReader<R> {
267267
// This is only used by a test which asserts that the initialization-tracking is correct.
268268
#[cfg(test)]
269269
impl<R: ?Sized> BufReader<R> {
270+
#[allow(missing_docs)]
270271
pub fn initialized(&self) -> usize {
271272
self.buf.initialized()
272273
}

0 commit comments

Comments
 (0)