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
Currently, this code relies on the fact that std uses specialization for cloning arrays. This is an implementation detail, and is not supported.
LibAFL/libafl_bolts/src/tuples.rs
Lines 23 to 54 in 0573bbb
In a future version of rust, this specialization might be removed, breaking this code. See rust-lang/rust#135634 and rust-lang/rust#132442
Maybe consider using the typeid crate instead.
The text was updated successfully, but these errors were encountered:
Hey, thanks for pointing to typeid. We've needed a proper replacement for this hack for some time, I'll see if I can't migrate to this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently, this code relies on the fact that std uses specialization for cloning arrays. This is an implementation detail, and is not supported.
LibAFL/libafl_bolts/src/tuples.rs
Lines 23 to 54 in 0573bbb
In a future version of rust, this specialization might be removed, breaking this code. See rust-lang/rust#135634 and rust-lang/rust#132442
Maybe consider using the typeid crate instead.
The text was updated successfully, but these errors were encountered: