Skip to content

Commit f8c78c2

Browse files
committed
Fix clippy::deprecated_cfg_attr on compiler_builtins
1 parent 9471fa8 commit f8c78c2

File tree

1 file changed

+1
-1
lines changed
  • compiler-builtins/libm/src/math

1 file changed

+1
-1
lines changed

compiler-builtins/libm/src/math/exp2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ use super::scalbn;
2828

2929
const TBLSIZE: usize = 256;
3030

31-
#[cfg_attr(rustfmt, rustfmt_skip)]
31+
#[rustfmt::skip]
3232
static TBL: [u64; TBLSIZE * 2] = [
3333
// exp2(z + eps) eps
3434
0x3fe6a09e667f3d5d, 0x3d39880000000000,

0 commit comments

Comments
 (0)