fix(library/init/lean/compiler/ir/emitcpp): typo
This commit is contained in:
parent
8003ccec13
commit
40b890f220
1 changed files with 1 additions and 1 deletions
|
|
@ -425,7 +425,7 @@ match decl with
|
|||
match mkExternCall extData `cpp (toStringArgs ys) with
|
||||
| some c := emit c *> emitLn ";"
|
||||
| none := throw "failed to emit extern application"
|
||||
| _ := do emitCppName f, when (ys.size > 0) (do emit "(", emitArgs ys, emitLn ")"), emitLn ";"
|
||||
| _ := do emitCppName f, when (ys.size > 0) (do emit "(", emitArgs ys, emit ")"), emitLn ";"
|
||||
|
||||
def emitPartialApp (z : VarId) (f : FunId) (ys : Array Arg) : M Unit :=
|
||||
do
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue