mv comment to an appropriate location

This commit is contained in:
Ivan FB 2026-05-12 22:43:35 +02:00
parent b53f3cee13
commit 397150e6bc
No known key found for this signature in database
GPG Key ID: DF0C67A04C543270
2 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,6 @@ proc nimtimerComplex*(
# once, at the bottom of the top-level compilation-root file.
# This call is a no-op unless -d:ffiGenBindings is passed to the compiler.
genBindings()
# reads -d:ffiOutputDir, -d:ffiNimSrcRelPath, -d:targetLang from compile flags
proc nimtimer_destroy*(ctx: pointer) {.dynlib, exportc, cdecl, raises: [].} =
## Tears down the FFI context created by nimtimer_create.

View File

@ -1635,6 +1635,8 @@ macro genBindings*(
## -d:ffiNimSrcRelPath, or can be passed as explicit arguments.
## This macro is a no-op unless -d:ffiGenBindings is set.
##
## This reads -d:ffiOutputDir, -d:ffiNimSrcRelPath, -d:targetLang from compile flags.
##
## Example (all via compile flags):
## genBindings()
## # nim c -d:ffiGenBindings -d:targetLang=rust \