Skip to content

Commit

Permalink
Fix the arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
scuellar committed Aug 14, 2023
1 parent 72dbd3e commit d204452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions heapster-saw/src/Verifier/SAW/Heapster/RustTypes.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1549,8 +1549,8 @@ parseFunPermFromRust :: (Fail.MonadFail m, 1 <= w, KnownNat w) =>
PermEnv -> prx w -> CruCtx args -> TypeRepr ret ->
String -> m (SomeFunPerm args ret)
parseFunPermFromRust env w args ret str =
do getSome3FunPerm <- parseSome3FunPermFromRust
un3SomeFunPerm args ret getSome3FunPerm
do get3SomeFunPerm <- parseSome3FunPermFromRust env w str
runLiftRustConvM (mkRustConvInfo env) $ un3SomeFunPerm args ret get3SomeFunPerm


-- | Just like `parseFunPermFromRust`, but returns a `Some3FunPerm`
Expand Down

0 comments on commit d204452

Please sign in to comment.