Semicolon after macro_rules definition.

This commit is contained in:
Orson Peters 2022-02-19 19:05:55 +01:00 committed by Urgau
parent 85d5171dea
commit a1e251024d
2 changed files with 2 additions and 2 deletions

View File

@ -307,7 +307,7 @@ macro_rules! assert_f32_biteq {
let lb = l.to_bits();
let rb = r.to_bits();
assert_eq!(lb, rb, "float {} ({:#x}) is not equal to {} ({:#x})", *l, lb, *r, rb);
}
};
}
// Ignore test on x87 floating point, these platforms do not guarantee NaN

View File

@ -297,7 +297,7 @@ macro_rules! assert_f64_biteq {
let lb = l.to_bits();
let rb = r.to_bits();
assert_eq!(lb, rb, "float {} ({:#x}) is not equal to {} ({:#x})", *l, lb, *r, rb);
}
};
}
// Ignore test on x87 floating point, these platforms do not guarantee NaN