frozen-abi: disallow integer arithmetic lint

This commit is contained in:
Trent Nelson 2021-03-11 20:34:30 -07:00 committed by Trent Nelson
parent f2865dfd63
commit 567e54aaa3
2 changed files with 0 additions and 2 deletions

View File

@ -1,4 +1,3 @@
#![allow(clippy::integer_arithmetic)]
extern crate proc_macro;
#[cfg(RUSTC_WITH_SPECIALIZATION)]

View File

@ -1,6 +1,5 @@
#![cfg_attr(RUSTC_WITH_SPECIALIZATION, feature(specialization))]
#![cfg_attr(RUSTC_NEEDS_PROC_MACRO_HYGIENE, feature(proc_macro_hygiene))]
#![allow(clippy::integer_arithmetic)]
// Allows macro expansion of `use ::solana_frozen_abi::*` to work within this crate
extern crate self as solana_frozen_abi;