From 5964e287a9555c6f0c36523b12cbf826eb7c2ddb Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Thu, 11 Dec 2025 17:21:47 +0100 Subject: [PATCH] rm useless comments --- ffi/internal/ffi_macro.nim | 2 -- 1 file changed, 2 deletions(-) diff --git a/ffi/internal/ffi_macro.nim b/ffi/internal/ffi_macro.nim index 129287d..88fc75b 100644 --- a/ffi/internal/ffi_macro.nim +++ b/ffi/internal/ffi_macro.nim @@ -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)