Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix GC safety warning #25

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

ire4ever1190
Copy link

@ire4ever1190 ire4ever1190 commented Feb 6, 2023

Currently insertID (and probably other procs) cannot be used in GC safe functions because the body parameter isn't considered GC safe

Sample from my stacktrace (using latest Nim devel version)

Warning: 'tryWithStmt' is not GC-safe as it performs an indirect call via 'body' [GcUnsafe2]
Warning: 'tryInsertID' is not GC-safe as it calls 'tryWithStmt' [GcUnsafe2]
Warning: 'insertID' is not GC-safe as it calls 'tryInsertID' [GcUnsafe2]

This just annotates the body proc as GC safe so that tryWithStmt is also considered GC safe

@ire4ever1190
Copy link
Author

Closes #18

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant