File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: e415c25bcd81dc1f9a5a3d25d9b48ed2d545336b
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: de2567dec9cfceec59db5d6d17df09c05f70d5a1
4
+ refs/heads/snap-stage3: 00cbda2d0af81a054ba61bd237f98e033ba7a2fa
5
5
refs/heads/try: 597a645456b55e1c886ce15d23a192abdf4d55cf
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -65,10 +65,11 @@ def do_license_check(name, contents):
65
65
check_tab = False
66
66
if line .find (linelength_flag ) != - 1 :
67
67
check_linelength = False
68
- if line .find ("// XXX" ) != - 1 :
69
- report_err ("XXX is no longer necessary, use FIXME" )
70
68
if line .find ("TODO" ) != - 1 :
71
69
report_err ("TODO is deprecated; use FIXME" )
70
+ match = re .match (r'^.*/(\*|/!?)\s*XXX' , line )
71
+ if match :
72
+ report_err ("XXX is no longer necessary, use FIXME" )
72
73
match = re .match (r'^.*//\s*(NOTE.*)$' , line )
73
74
if match :
74
75
m = match .group (1 )
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ impl Drop for Addrinfo {
120
120
}
121
121
122
122
fn each_ai_flag ( _f : |c_int , ai:: Flag |) {
123
- /* XXX : do we really want to support these?
123
+ /* FIXME : do we really want to support these?
124
124
unsafe {
125
125
f(uvll::rust_AI_ADDRCONFIG(), ai::AddrConfig);
126
126
f(uvll::rust_AI_ALL(), ai::All);
@@ -150,7 +150,7 @@ pub fn accum_addrinfo(addr: &Addrinfo) -> ~[ai::Info] {
150
150
}
151
151
} ) ;
152
152
153
- /* XXX : do we really want to support these
153
+ /* FIXME : do we really want to support these
154
154
let protocol = match (*addr).ai_protocol {
155
155
p if p == uvll::rust_IPPROTO_UDP() => Some(ai::UDP),
156
156
p if p == uvll::rust_IPPROTO_TCP() => Some(ai::TCP),
Original file line number Diff line number Diff line change 12
12
//!
13
13
//! The runtime will use this for storing ~Task.
14
14
//!
15
- //! XXX : Add runtime checks for usage of inconsistent pointer types.
15
+ //! FIXME : Add runtime checks for usage of inconsistent pointer types.
16
16
//! and for overwriting an existing pointer.
17
17
18
18
#![ allow( dead_code) ]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use std::os;
15
15
fn start ( n_tasks : int , token : int ) {
16
16
let ( tx, mut rx) = channel ( ) ;
17
17
tx. send ( token) ;
18
- // XXX could not get this to work with a range closure
18
+ // FIXME could not get this to work with a range closure
19
19
let mut i = 2 ;
20
20
while i <= n_tasks {
21
21
let ( tx, next_rx) = channel ( ) ;
You can’t perform that action at this time.
0 commit comments