Skip to content

Commit a1e2510

Browse files
orlpUrgau
authored andcommitted
Semicolon after macro_rules definition.
1 parent 85d5171 commit a1e2510

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/f32/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ macro_rules! assert_f32_biteq {
307307
let lb = l.to_bits();
308308
let rb = r.to_bits();
309309
assert_eq!(lb, rb, "float {} ({:#x}) is not equal to {} ({:#x})", *l, lb, *r, rb);
310-
}
310+
};
311311
}
312312

313313
// Ignore test on x87 floating point, these platforms do not guarantee NaN

library/std/src/f64/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ macro_rules! assert_f64_biteq {
297297
let lb = l.to_bits();
298298
let rb = r.to_bits();
299299
assert_eq!(lb, rb, "float {} ({:#x}) is not equal to {} ({:#x})", *l, lb, *r, rb);
300-
}
300+
};
301301
}
302302

303303
// Ignore test on x87 floating point, these platforms do not guarantee NaN

0 commit comments

Comments
 (0)