From 6237c65544880169f26c4ec80846178d8fc088d6 Mon Sep 17 00:00:00 2001 From: Sylvester Hesp Date: Tue, 30 Aug 2022 11:02:14 +0200 Subject: [PATCH] Linter fix --- crates/spirv-std/src/arch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/spirv-std/src/arch.rs b/crates/spirv-std/src/arch.rs index ab05028de5..98f5b43d80 100644 --- a/crates/spirv-std/src/arch.rs +++ b/crates/spirv-std/src/arch.rs @@ -4,7 +4,7 @@ //! These functions will typically map to a single instruction, and will perform //! no additional safety checks beyond type-checking. use crate::{ - integer::{Integer, SignedInteger, UnsignedInteger}, + integer::{SignedInteger, UnsignedInteger}, scalar::Scalar, vector::Vector, };