Skip to content

Commit a92adca

Browse files
committed
---
yaml --- r: 15739 b: refs/heads/try c: ca3a9f8 h: refs/heads/master i: 15737: 06a2896 15735: c11b7d6 v: v3
1 parent f92d797 commit a92adca

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: f029e1f486d965c0a20410644e9faa9b294e03c9
5+
refs/heads/try: ca3a9f83f4815840a507291778910df1e521d423
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/libstd/deque.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ iface t<T> {
1414
}
1515

1616
// FIXME eventually, a proper datatype plus an exported impl would be
17-
// preferrable
17+
// preferrable (#2343)
1818
fn create<T: copy>() -> t<T> {
1919
type cell<T> = option<T>;
2020

branches/try/src/libstd/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ iface map<K: copy, V: copy> {
6666
}
6767

6868
// FIXME: package this up and export it as a datatype usable for
69-
// external code that doesn't want to pay the cost of a box.
69+
// external code that doesn't want to pay the cost of a box. (#2344)
7070
mod chained {
7171
type entry<K, V> = {
7272
hash: uint,

branches/try/src/libstd/sha1.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fn sha1() -> sha1 {
6161
work_buf: [mut u32]};
6262

6363
fn add_input(st: sha1state, msg: [u8]) {
64-
// FIXME: Should be typestate precondition
64+
/* FIXME: Should be typestate precondition (#2345) */
6565
assert (!st.computed);
6666
for vec::each(msg) {|element|
6767
st.msg_block[st.msg_block_idx] = element;
@@ -70,7 +70,7 @@ fn sha1() -> sha1 {
7070
if st.len_low == 0u32 {
7171
st.len_high += 1u32;
7272
if st.len_high == 0u32 {
73-
// FIXME: Need better failure mode
73+
// FIXME: Need better failure mode (#2346)
7474

7575
fail;
7676
}
@@ -79,7 +79,7 @@ fn sha1() -> sha1 {
7979
}
8080
}
8181
fn process_msg_block(st: sha1state) {
82-
// FIXME: Make precondition
82+
// FIXME: Make precondition (#2345)
8383
assert (vec::len(st.h) == digest_buf_len);
8484
assert (vec::len(st.work_buf) == work_buf_len);
8585
let mut t: int; // Loop counter
@@ -181,7 +181,7 @@ fn sha1() -> sha1 {
181181
* can be assumed that the message digest has been computed.
182182
*/
183183
fn pad_msg(st: sha1state) {
184-
// FIXME: Should be a precondition
184+
// FIXME: Should be a precondition (#2345)
185185
assert (vec::len(st.msg_block) == msg_block_len);
186186

187187
/*
@@ -220,7 +220,7 @@ fn sha1() -> sha1 {
220220

221221
impl of sha1 for sha1state {
222222
fn reset() {
223-
// FIXME: Should be typestate precondition
223+
// FIXME: Should be typestate precondition (#2345)
224224
assert (vec::len(self.h) == digest_buf_len);
225225
self.len_low = 0u32;
226226
self.len_high = 0u32;

0 commit comments

Comments
 (0)