Skip to content

Commit 4ef26e4

Browse files
committed
---
yaml --- r: 52214 b: refs/heads/dist-snap c: e1c52a4 h: refs/heads/master v: v3
1 parent 30d61c7 commit 4ef26e4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10-
refs/heads/dist-snap: 3702e4b23c818e807d0acac368b1b52b21085d6d
10+
refs/heads/dist-snap: e1c52a4a9f9bcc99f7978f65dd53302050f04de4
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/libstd/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ pub fn hash_from_vec<K: Eq IterBytes Hash Const Copy, V: Copy>(
498498
map
499499
}
500500

501-
// XXX Transitional
501+
// FIXME #4431: Transitional
502502
impl<K: Eq IterBytes Hash Copy, V: Copy> @Mut<LinearMap<K, V>>:
503503
Map<K, V> {
504504
pure fn size() -> uint {

branches/dist-snap/src/libstd/workcache.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ impl WorkKey {
108108
type WorkMap = LinearMap<WorkKey, ~str>;
109109

110110
struct Database {
111-
// XXX: Fill in.
111+
// FIXME #4432: Fill in.
112112
a: ()
113113
}
114114

@@ -117,7 +117,7 @@ impl Database {
117117
_declared_inputs: &const WorkMap,
118118
_declared_outputs: &const WorkMap) ->
119119
Option<(WorkMap, WorkMap, ~str)> {
120-
// XXX: load
120+
// FIXME #4432: load
121121
None
122122
}
123123
pure fn cache(_fn_name: &str,
@@ -126,12 +126,12 @@ impl Database {
126126
_discovered_inputs: &WorkMap,
127127
_discovered_outputs: &WorkMap,
128128
_result: &str) {
129-
// XXX: store
129+
// FIXME #4432: store
130130
}
131131
}
132132

133133
struct Logger {
134-
// XXX: Fill in
134+
// FIXME #4432: Fill in
135135
a: ()
136136
}
137137

@@ -171,7 +171,7 @@ fn digest<T:Encodable<json::Encoder>
171171
Decodable<json::Decoder>>(t: &T) -> ~str {
172172
let sha = sha1::sha1();
173173
let s = do io::with_str_writer |wr| {
174-
// XXX: sha1 should be a writer itself, shouldn't
174+
// FIXME #4432: sha1 should be a writer itself, shouldn't
175175
// go via strings.
176176
t.encode(&json::Encoder(wr));
177177
};

0 commit comments

Comments
 (0)