Skip to content

Commit 2cb0be8

Browse files
committed
hm
1 parent f8bee8f commit 2cb0be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recursion/compiler/src/ir/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ impl<F: Field, EF: ExtensionField<F>> Ext<F, EF> {
10421042
builder.push(DslIr::SubE(*self, *lhs, *rhs));
10431043
}
10441044
(SymbolicExt::Val(lhs, _), SymbolicExt::Base(rhs, _)) => {
1045-
let rhs: Felt<_> = builder.eval(rhs.clone().into());
1045+
let rhs: Felt<_> = builder.eval(*rhs.clone());
10461046
builder.push(DslIr::SubEF(*self, *lhs, rhs));
10471047
}
10481048
(SymbolicExt::Val(lhs, _), rhs) => {

0 commit comments

Comments
 (0)