From 6db0f76052d0a4ba403b748d09fc5d58084ae51c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 21 May 2021 20:40:35 +0100 Subject: [PATCH] apitest: Remove some Sized foolishness Signed-off-by: Ian Jackson --- apitest/apitest.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apitest/apitest.rs b/apitest/apitest.rs index d0f30a3e..26cfdf64 100644 --- a/apitest/apitest.rs +++ b/apitest/apitest.rs @@ -161,8 +161,7 @@ pub trait Substitutor { } #[throws(AE)] - fn gss(&self, s: &str) -> Vec - where Self: Sized { + fn gss(&self, s: &str) -> Vec { self.ss(&format!("-g @table@ {}", s))? } } -- 2.30.2