Re-allow clippy::integer_arithmetic at crate-level

This commit is contained in:
Trent Nelson
2021-02-16 14:48:20 -07:00
committed by Trent Nelson
parent 7035e8485c
commit 7f7370c306
73 changed files with 73 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
#![allow(clippy::integer_arithmetic)]
pub mod alloc;
pub mod allocator_bump;
pub mod bpf_verifier;

View File

@@ -1,3 +1,4 @@
#![allow(clippy::integer_arithmetic)]
pub mod budget_expr;
pub mod budget_instruction;
pub mod budget_processor;

View File

@@ -1,3 +1,4 @@
#![allow(clippy::integer_arithmetic)]
pub mod config_instruction;
pub mod config_processor;
pub mod date_instruction;

View File

@@ -1,3 +1,4 @@
#![allow(clippy::integer_arithmetic)]
pub mod exchange_instruction;
pub mod exchange_processor;
pub mod exchange_state;

View File

@@ -1,4 +1,5 @@
#![cfg_attr(RUSTC_WITH_SPECIALIZATION, feature(specialization))]
#![allow(clippy::integer_arithmetic)]
use solana_sdk::genesis_config::GenesisConfig;
pub mod config;

View File

@@ -1,3 +1,4 @@
#![allow(clippy::integer_arithmetic)]
pub mod vest_instruction;
pub mod vest_processor;
pub mod vest_schedule;

View File

@@ -1,4 +1,5 @@
#![cfg_attr(RUSTC_WITH_SPECIALIZATION, feature(specialization))]
#![allow(clippy::integer_arithmetic)]
pub mod authorized_voters;
pub mod vote_instruction;