diff options
Diffstat (limited to 'src/bindings/quickjs.nim')
-rw-r--r-- | src/bindings/quickjs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/quickjs.nim b/src/bindings/quickjs.nim index a2cf431e..53384b77 100644 --- a/src/bindings/quickjs.nim +++ b/src/bindings/quickjs.nim @@ -27,7 +27,7 @@ const ## all tags with a reference count are negative JS_TAG_FLOAT64* = 7 ## any larger tag is FLOAT64 if JS_NAN_BOXING when sizeof(int) < sizeof(int64): - {.passC: "-DJS_NAN_BOXING".} + {.passc: "-DJS_NAN_BOXING".} type JSValue* {.importc, header: qjsheader.} = distinct uint64 |