comments: Convert XXXes to FIXMEs

This commit is contained in:
Tim Chevalier 2013-01-24 18:49:51 -08:00
parent 9898485d4f
commit c3f4f654eb
2 changed files with 3 additions and 2 deletions

View File

@ -138,7 +138,7 @@ impl LanguageItems {
}
}
// XXX: Method macros sure would be nice here.
// FIXME #4621: Method macros sure would be nice here.
pub fn const_trait(&const self) -> def_id {
self.items[ConstTraitLangItem as uint].get()

View File

@ -720,7 +720,8 @@ fn check_item_ctypes(cx: ty::ctxt, it: @ast::item) {
ast::foreign_item_fn(decl, _, _) => {
check_foreign_fn(cx, it.id, decl);
}
ast::foreign_item_const(*) => {} // XXX: Not implemented.
// FIXME #4622: Not implemented.
ast::foreign_item_const(*) => {}
}
}
}