File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
branches/dist-snap/src/libstd Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
9
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10
- refs/heads/dist-snap: 3702e4b23c818e807d0acac368b1b52b21085d6d
10
+ refs/heads/dist-snap: e1c52a4a9f9bcc99f7978f65dd53302050f04de4
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
13
13
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
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