From 4cd8a9c49fb41ee2b45156425604de920c93c78f Mon Sep 17 00:00:00 2001 From: tmontaigu Date: Mon, 14 Oct 2024 16:27:34 +0200 Subject: [PATCH] chore: fix bound clippy complains about --- tfhe/src/high_level_api/array/tests/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tfhe/src/high_level_api/array/tests/mod.rs b/tfhe/src/high_level_api/array/tests/mod.rs index 394fffe2aa..6e1a9b57b3 100644 --- a/tfhe/src/high_level_api/array/tests/mod.rs +++ b/tfhe/src/high_level_api/array/tests/mod.rs @@ -108,12 +108,13 @@ where + FheDecrypt> + BitOr + for<'a> BitOr<&'a Array, Output = Array>, - for<'a> &'a Array: BitOr + BitOr<&'a Array, Output = Array>, + for<'a> &'a Array: BitOr + + BitOr<&'a Array, Output = Array> + + BitOr, Output = Array>, // Bounds for slicing tests for<'a, 'b> Array::Slice<'a>: BitOr, Output = Array>, // for the 2 tested slice/array ops for<'a, 'b> Array::Slice<'a>: BitOr<&'b Array, Output = Array>, - for<'a, 'b> &'b Array: BitOr, Output = Array>, { let num_values = 5; let clear_lhs = draw_random_values::(num_values);