rm useless comments

This commit is contained in:
Ivan Folgueira Bande 2025-12-11 17:21:47 +01:00
parent e0cf0c8842
commit 5964e287a9
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7

View File

@ -325,7 +325,6 @@ macro processReq*(
let newReqCall = newCall(ident("ffiNewReq"), callArgs)
# CORRECT: use actual ctx symbol
let sendCall = newCall(
newDotExpr(ident("ffi_context"), ident("sendRequestToFFIThread")), ctx, newReqCall
)
@ -414,5 +413,4 @@ macro ffi*(prc: untyped): untyped =
registerReqFFI(`reqName`, `paramIdent`: `paramType`):
`anonymousProcNode`
# Final macro result
result = newStmtList(registerReq, ffiProc)