diff options
author | bptato <nincsnevem662@gmail.com> | 2024-05-08 18:52:53 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-05-08 18:52:53 +0200 |
commit | 1aca7ec77c965c8428361472bd7cb0d522238813 (patch) | |
tree | dea29556001d764470c4c89dece33e1c8e3d713c /src/types/blob.nim | |
parent | 86f4c56507bc94d03e7d94be6ede884b9e7b5358 (diff) | |
download | chawan-1aca7ec77c965c8428361472bd7cb0d522238813.tar.gz |
js: fix finalizer effects
Diffstat (limited to 'src/types/blob.nim')
-rw-r--r-- | src/types/blob.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types/blob.nim b/src/types/blob.nim index c3d9a071..ebf5aedf 100644 --- a/src/types/blob.nim +++ b/src/types/blob.nim @@ -9,7 +9,7 @@ import utils/mimeguess import utils/twtstr type - DeallocFun = proc() {.closure.} + DeallocFun = proc() {.closure, raises: [].} Blob* = ref object of RootObj isfile*: bool |