diff options
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/gc_ms.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/gc_ms.nim b/lib/system/gc_ms.nim index 0b9745f1e..6683b9e34 100644 --- a/lib/system/gc_ms.nim +++ b/lib/system/gc_ms.nim @@ -104,7 +104,7 @@ proc extGetCellType(c: pointer): PNimType {.compilerproc.} = # used for code generation concerning debugging result = usrToCell(c).typ -proc unsureAsgnRef(dest: PPointer, src: pointer) {.inline.} = +proc unsureAsgnRef(dest: PPointer, src: pointer) {.inline, compilerproc.} = dest[] = src proc internRefcount(p: pointer): int {.exportc: "getRefcount".} = |