Skip to content

Commit 0449174

Browse files
committed
---
yaml --- r: 10154 b: refs/heads/snap-stage3 c: 1523298 h: refs/heads/master v: v3
1 parent 1b92388 commit 0449174

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 09a1b949071cd573cd171362e9c3b894105556c1
4+
refs/heads/snap-stage3: 1523298bc73b2ef9141163daae1f71d5908ade10
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/snap-stage3/src/libcore/vec.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,12 @@ impl extensions<T> for [T] {
11621162
mod unsafe {
11631163
// FIXME: This should have crate visibility (#1893 blocks that)
11641164
#[doc = "The internal representation of a vector"]
1165-
type vec_repr = {mut fill: uint, mut alloc: uint, data: u8};
1165+
type vec_repr = {
1166+
box_header: (uint, uint, uint, uint),
1167+
mut fill: uint,
1168+
mut alloc: uint,
1169+
data: u8
1170+
};
11661171

11671172
#[doc = "
11681173
Constructs a vector from an unsafe pointer to a buffer

0 commit comments

Comments
 (0)