From 2757bc4dad707788d184af5ca57970130d501afc Mon Sep 17 00:00:00 2001 From: Mike Welsh Date: Mon, 7 Dec 2020 10:14:31 -0800 Subject: [PATCH] chore: Appease clippy Allow suspicious_operation_groupings for Matrix. --- swf/src/types/matrix.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/swf/src/types/matrix.rs b/swf/src/types/matrix.rs index 23abe0a51..eb845021e 100644 --- a/swf/src/types/matrix.rs +++ b/swf/src/types/matrix.rs @@ -1,3 +1,5 @@ +#![allow(clippy::suspicious_operation_groupings)] + use crate::Twips; #[derive(Copy, Clone, Debug, PartialEq)]