Compiling

This commit is contained in:
2026-02-09 11:00:53 +01:00
parent b80077f3a7
commit bce33de71e
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ impl Display for ProofType
pub trait Tracer
{
fn begin_proof<T: Display>(&self, proof_type: ProofType) -> Self;
fn begin_proof(&self, proof_type: ProofType) -> Self;
fn print_step<T: Display>(&self, show: T);
fn end_proof(self);
}
@ -45,7 +45,7 @@ impl SimpleTracer
impl Tracer for SimpleTracer
{
fn begin_proof<T: Display>(&self, proof_type: ProofType) -> Self
fn begin_proof(&self, proof_type: ProofType) -> Self
{
SimpleTracer { proof_type }
}