Removed generic data type in PrepareScratchSpace trait

This commit is contained in:
Jean-Philippe Bossuat
2025-10-09 17:18:15 +02:00
parent 312ecc7f2f
commit 8d3fed3ae7
10 changed files with 22 additions and 22 deletions

View File

@@ -260,7 +260,7 @@ impl<B: Backend> GGLWECiphertextPrepared<Vec<u8>, B> {
}
}
impl<DR: DataRef, B: Backend, A: GGLWEInfos> PrepareScratchSpace<B, A> for GGLWECiphertextPrepared<DR, B>
impl<B: Backend, A: GGLWEInfos> PrepareScratchSpace<B, A> for GGLWECiphertextPrepared<Vec<u8>, B>
where
Module<B>: VmpPrepareTmpBytes,
{