Skip to content

Commit e1c52a4

Browse files
committed
core: Change XXXs into proper FIXMEs with issue numbers
1 parent 3702e4b commit e1c52a4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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 {

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)