Skip to content

Commit c3f4f65

Browse files
committed
comments: Convert XXXes to FIXMEs
1 parent 9898485 commit c3f4f65

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/librustc/middle/lang_items.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ impl LanguageItems {
138138
}
139139
}
140140

141-
// XXX: Method macros sure would be nice here.
141+
// FIXME #4621: Method macros sure would be nice here.
142142

143143
pub fn const_trait(&const self) -> def_id {
144144
self.items[ConstTraitLangItem as uint].get()

src/librustc/middle/lint.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,8 @@ fn check_item_ctypes(cx: ty::ctxt, it: @ast::item) {
720720
ast::foreign_item_fn(decl, _, _) => {
721721
check_foreign_fn(cx, it.id, decl);
722722
}
723-
ast::foreign_item_const(*) => {} // XXX: Not implemented.
723+
// FIXME #4622: Not implemented.
724+
ast::foreign_item_const(*) => {}
724725
}
725726
}
726727
}

0 commit comments

Comments
 (0)