Skip to content

Commit

Permalink
Use generic arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeeter committed Nov 5, 2024
1 parent 279fd16 commit 1e9f7a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fidget/src/core/vm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ impl<const N: usize> Function for GenericVmFunction<N> {
type Trace = VmTrace;
fn simplify(
&self,
trace: &VmTrace,
storage: VmData<N>,
trace: &Self::Trace,
storage: Self::Storage,
workspace: &mut Self::Workspace,
) -> Result<Self, Error> {
let d = self.0.simplify(trace.as_slice(), workspace, storage)?;
Expand Down

0 comments on commit 1e9f7a8

Please sign in to comment.