Skip to content

Commit b7273c0

Browse files
committed
---
yaml --- r: 38392 b: refs/heads/try c: e1c52a4 h: refs/heads/master v: v3
1 parent 67f49a5 commit b7273c0

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 09bb07bed9166105ea961a42b5fff7739ae0d2e9
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
5-
refs/heads/try: 3702e4b23c818e807d0acac368b1b52b21085d6d
5+
refs/heads/try: e1c52a4a9f9bcc99f7978f65dd53302050f04de4
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/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/try/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)