removed self from PrepareScratch trait

This commit is contained in:
Jean-Philippe Bossuat
2025-10-09 17:13:43 +02:00
parent 2884935a38
commit 312ecc7f2f
11 changed files with 17 additions and 17 deletions

View File

@@ -86,7 +86,7 @@ impl<D: Data, B: Backend> GLWESecretPrepared<D, B> {
}
impl<DR: DataRef, B: Backend, A: GLWEInfos> PrepareScratchSpace<B, A> for GLWESecretPrepared<DR, B> {
fn prepare_scratch_space(&self, _module: &Module<B>, _infos: &A) -> usize {
fn prepare_scratch_space(_module: &Module<B>, _infos: &A) -> usize {
0
}
}