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

Commit 017df02

Browse files
committed
Renames clippy::integer_arithmetic to clippy::arithmetic_side_effects.
1 parent 2854007 commit 017df02

File tree

145 files changed

+149
-149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+149
-149
lines changed

account-decoder/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22
#[macro_use]
33
extern crate lazy_static;
44
#[macro_use]

accounts-bench/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22

33
#[macro_use]
44
extern crate log;

accounts-cluster-bench/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22
use {
33
clap::{crate_description, crate_name, value_t, values_t_or_exit, App, Arg},
44
log::*,

accounts-db/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![cfg_attr(RUSTC_WITH_SPECIALIZATION, feature(min_specialization))]
2-
#![allow(clippy::integer_arithmetic)]
2+
#![allow(clippy::arithmetic_side_effects)]
33

44
#[macro_use]
55
extern crate lazy_static;

banking-bench/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22
use {
33
clap::{crate_description, crate_name, Arg, ArgEnum, Command},
44
crossbeam_channel::{unbounded, Receiver},

banks-server/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22
pub mod banks_server;

bench-streamer/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22

33
use {
44
clap::{crate_description, crate_name, Arg, Command},

bench-tps/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22
pub mod bench;
33
pub mod bench_tps_client;
44
pub mod cli;

bench-tps/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22
use {
33
clap::value_t,
44
log::*,

bench-tps/tests/bench_tps.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![allow(clippy::integer_arithmetic)]
1+
#![allow(clippy::arithmetic_side_effects)]
22

33
use {
44
serial_test::serial,

0 commit comments

Comments
 (0)