mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-08-27 15:41:12 +00:00
allow unused mut when feature disabled
This commit is contained in:
@@ -69,7 +69,8 @@ impl<F: RichField + Extendable<D>, const D: usize> SystemZero<F, D> {
|
||||
}
|
||||
|
||||
pub fn generate_trace(&self) -> Vec<PolynomialValues<F>> {
|
||||
let timing = TimingTree::new("generate trace", log::Level::Debug);
|
||||
#[allow(unused_mut)]
|
||||
let mut timing = TimingTree::new("generate trace", log::Level::Debug);
|
||||
|
||||
// Generate the witness, except for permuted columns in the lookup argument.
|
||||
let trace_rows = timed!(
|
||||
|
||||
Reference in New Issue
Block a user