Removed all instances of XXX in preparation for relaxing of FIXME rule

This commit is contained in:
Salem Talha 2014-01-26 03:43:42 -05:00
parent 838b5a4cc0
commit cc61fc0994
72 changed files with 119 additions and 119 deletions

View file

@ -56,7 +56,7 @@ static HOMO_SAPIENS: [AminoAcid, ..4] = [
AminoAcid { c: 't' as u8, p: 0.3015094502008 },
];
// XXX: Use map().
// FIXME: Use map().
fn sum_and_scale(a: &'static [AminoAcid]) -> ~[AminoAcid] {
let mut result = ~[];
let mut p = 0f32;

View file

@ -49,7 +49,7 @@ impl Code {
code
}
// XXX: Inefficient.
// FIXME: Inefficient.
fn unpack(&self, frame: i32) -> ~str {
let mut key = **self;
let mut result = ~[];

View file

@ -22,7 +22,7 @@ mod cross_crate {
use self::lint_stability::*;
fn test() {
// XXX: attributes on methods are not encoded cross crate.
// FIXME: attributes on methods are not encoded cross crate.
let foo = MethodTester;
deprecated(); //~ ERROR use of deprecated item

View file

@ -37,7 +37,7 @@ pub fn main() {
(@"test").test_imm();
(&"test").test_imm();
// XXX: Other types of mutable vecs don't currently exist
// FIXME: Other types of mutable vecs don't currently exist
// NB: We don't do this double autoreffing for &mut self because that would
// allow creating a mutable pointer to a temporary, which would be a source