Skip to content

Commit

Permalink
Rollup merge of #77442 - pickfire:patch-7, r=scottmcm
Browse files Browse the repository at this point in the history
Clean up on example doc fixes for ptr::copy

Follow up of #77385

r? @scottmcm
  • Loading branch information
jonas-schievink authored Oct 2, 2020
2 parents edae965 + ddd1986 commit 14d8ee3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions library/core/src/intrinsics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1901,9 +1901,10 @@ pub unsafe fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize) {
/// ```
/// use std::ptr;
///
/// /// # Safety:
/// /// # Safety
/// ///
/// /// * `ptr` must be correctly aligned for its type and non-zero.
/// /// * `ptr` must be valid for reads of `elts` contiguous objects of type `T`.
/// /// * `ptr` must be valid for reads of `elts` contiguous elements of type `T`.
/// /// * Those elements must not be used after calling this function unless `T: Copy`.
/// # #[allow(dead_code)]
/// unsafe fn from_buf_raw<T>(ptr: *const T, elts: usize) -> Vec<T> {
Expand Down

0 comments on commit 14d8ee3

Please sign in to comment.