Skip to content

Commit 7ed2f28

Browse files
author
James Miller
committed
---
yaml --- r: 60151 b: refs/heads/master c: 414970c h: refs/heads/master i: 60149: c8f7b2d 60147: 8e2d79a 60143: 95a0014 v: v3
1 parent c7d9969 commit 7ed2f28

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 57509709b4ecc31b04b765bd07cd5fe672667e43
2+
refs/heads/master: 414970c46f75c730d7fed029deb48b0d1c454391
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
55
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589

trunk/src/libstd/priority_queue.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ use core::old_iter::BaseIter;
1616
extern "rust-intrinsic" mod rusti {
1717
fn move_val_init<T>(dst: &mut T, src: T);
1818
fn init<T>() -> T;
19+
#[cfg(not(stage0))]
20+
fn uninit<T>() -> T;
1921
}
2022

2123
pub struct PriorityQueue<T> {

trunk/src/libstd/rc.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ mod test_rc {
114114
#[abi = "rust-intrinsic"]
115115
extern "rust-intrinsic" mod rusti {
116116
fn init<T>() -> T;
117+
#[cfg(not(stage0))]
118+
fn uninit<T>() -> T;
117119
}
118120

119121
#[deriving(Eq)]

0 commit comments

Comments
 (0)