Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Fix clippy::deprecated_cfg_attr on compiler_builtins #295

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/math/exp2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use super::scalbn;

const TBLSIZE: usize = 256;

#[cfg_attr(rustfmt, rustfmt_skip)]
#[rustfmt::skip]
static TBL: [u64; TBLSIZE * 2] = [
// exp2(z + eps) eps
0x3fe6a09e667f3d5d, 0x3d39880000000000,
Expand Down