Skip to content

Commit f0d18f6

Browse files
committed
Adds raise-lists to Iter callbacks.
1 parent 06947b4 commit f0d18f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

leveldbstatic.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ type
7676

7777
LevelDbException* = object of CatchableError
7878

79-
IterNext* = proc(): (string, string) {.gcsafe, closure.}
80-
IterDispose* = proc() {.gcsafe, closure.}
79+
IterNext* = proc(): (string, string) {.gcsafe, closure, raises: [LevelDbException].}
80+
IterDispose* = proc() {.gcsafe, closure, raises: [].}
8181
LevelDbQueryIter* = ref object
8282
finished*: bool
8383
next*: IterNext

0 commit comments

Comments
 (0)