Skip to content

Commit 25c3f10

Browse files
committed
---
yaml --- r: 43003 b: refs/heads/try c: dab2f2f h: refs/heads/master i: 43001: 0d1ff49 42999: a16062b v: v3
1 parent 48b3b49 commit 25c3f10

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 19dfec2aaf746535de1521f68421f9980dbf25de
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5-
refs/heads/try: bdfb930f3412bcbf792bd8ab10f40b6560663a5f
5+
refs/heads/try: dab2f2fac0d5147b088489abfbcf43714ed36156
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/src/libstd/smallintmap.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,6 @@ pub impl<V> SmallIntMap<V> {
116116
}
117117

118118
pub impl<V: Copy> SmallIntMap<V> {
119-
// FIXME: #4733, remove after the next snapshot
120-
#[cfg(stage2)]
121119
fn update_with_key(&mut self, key: uint, val: V,
122120
ff: fn(uint, V, V) -> V) -> bool {
123121
match self.find(&key) {
@@ -126,8 +124,6 @@ pub impl<V: Copy> SmallIntMap<V> {
126124
}
127125
}
128126

129-
// FIXME: #4733, remove after the next snapshot
130-
#[cfg(stage2)]
131127
fn update(&mut self, key: uint, newval: V, ff: fn(V, V) -> V) -> bool {
132128
self.update_with_key(key, newval, |_k, v, v1| ff(v,v1))
133129
}

0 commit comments

Comments
 (0)