Skip to content

Commit 8e07b14

Browse files
authored
Merge pull request #188 from TimDiekmann/rename-alloc
Rename `Alloc` to `AllocRef`
2 parents 98d750a + 212cfe3 commit 8e07b14

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/destructors.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For instance, a custom implementation of `Box` might write `Drop` like this:
2828
```rust
2929
#![feature(ptr_internals, allocator_api)]
3030

31-
use std::alloc::{Alloc, Global, GlobalAlloc, Layout};
31+
use std::alloc::{AllocRef, Global, GlobalAlloc, Layout};
3232
use std::mem;
3333
use std::ptr::{drop_in_place, NonNull, Unique};
3434

@@ -55,7 +55,7 @@ However this wouldn't work:
5555
```rust
5656
#![feature(allocator_api, ptr_internals)]
5757

58-
use std::alloc::{Alloc, Global, GlobalAlloc, Layout};
58+
use std::alloc::{AllocRef, Global, GlobalAlloc, Layout};
5959
use std::ptr::{drop_in_place, Unique, NonNull};
6060
use std::mem;
6161

@@ -128,7 +128,7 @@ of Self during `drop` is to use an Option:
128128
```rust
129129
#![feature(allocator_api, ptr_internals)]
130130

131-
use std::alloc::{Alloc, GlobalAlloc, Global, Layout};
131+
use std::alloc::{AllocRef, GlobalAlloc, Global, Layout};
132132
use std::ptr::{drop_in_place, Unique, NonNull};
133133
use std::mem;
134134

src/vec-final.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::ptr::{Unique, NonNull, self};
99
use std::mem;
1010
use std::ops::{Deref, DerefMut};
1111
use std::marker::PhantomData;
12-
use std::alloc::{Alloc, GlobalAlloc, Layout, Global, handle_alloc_error};
12+
use std::alloc::{AllocRef, GlobalAlloc, Layout, Global, handle_alloc_error};
1313

1414
struct RawVec<T> {
1515
ptr: Unique<T>,

0 commit comments

Comments
 (0)