We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
type SeqHeader = object length, reserved: int proc isLiteral*(s: string): bool {.inline.} = (cast[ptr SeqHeader](s.cstring).reserved and (1 shl (sizeof(int) * 8 - 2))) != 0 proc isLiteral*[T](s: seq[T]): bool {.inline.} = (cast[ptr SeqHeader](s).reserved and (1 shl (sizeof(int) * 8 - 2))) != 0
How to deal with seq[T] casting to ptr SeqHeader with --gc:arc
The text was updated successfully, but these errors were encountered:
We aren't supporting the ARC gc ATM.
Sorry, something went wrong.
When will arc/orc be supported?
ATM, we're sticking with the smallest stable feature subset in Nim and unfortunately ARC/ORC aren't 100% stable.
No branches or pull requests
How to deal with seq[T] casting to ptr SeqHeader with --gc:arc
The text was updated successfully, but these errors were encountered: