File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -498,7 +498,7 @@ pub fn hash_from_vec<K: Eq IterBytes Hash Const Copy, V: Copy>(
498
498
map
499
499
}
500
500
501
- // XXX Transitional
501
+ // FIXME #4431: Transitional
502
502
impl < K : Eq IterBytes Hash Copy , V : Copy > @Mut < LinearMap < K , V > > :
503
503
Map < K , V > {
504
504
pure fn size ( ) -> uint {
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl WorkKey {
108
108
type WorkMap = LinearMap <WorkKey , ~str >;
109
109
110
110
struct Database {
111
- // XXX : Fill in.
111
+ // FIXME #4432 : Fill in.
112
112
a : ( )
113
113
}
114
114
@@ -117,7 +117,7 @@ impl Database {
117
117
_declared_inputs : & const WorkMap ,
118
118
_declared_outputs : & const WorkMap ) ->
119
119
Option < ( WorkMap , WorkMap , ~str ) > {
120
- // XXX : load
120
+ // FIXME #4432 : load
121
121
None
122
122
}
123
123
pure fn cache ( _fn_name : & str ,
@@ -126,12 +126,12 @@ impl Database {
126
126
_discovered_inputs : & WorkMap ,
127
127
_discovered_outputs : & WorkMap ,
128
128
_result : & str ) {
129
- // XXX : store
129
+ // FIXME #4432 : store
130
130
}
131
131
}
132
132
133
133
struct Logger {
134
- // XXX : Fill in
134
+ // FIXME #4432 : Fill in
135
135
a : ( )
136
136
}
137
137
@@ -171,7 +171,7 @@ fn digest<T:Encodable<json::Encoder>
171
171
Decodable<json::Decoder>>(t: &T) -> ~str {
172
172
let sha = sha1::sha1();
173
173
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
175
175
// go via strings.
176
176
t.encode(&json::Encoder(wr));
177
177
};
You can’t perform that action at this time.
0 commit comments