-
Notifications
You must be signed in to change notification settings - Fork 128
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
Compilation error on gcc 12: pointer used after ‘void operator delete(void*, std::size_t)’ #1005
Labels
Comments
I have a similar issue with errors for ENABLE_INTRUSIVE_PTR while trying to compile marian.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Marian doesn't compile with gcc 12.3.1 due to issues with intrusive pointer. Note that there are two kinds of error:
pointer used after
andpointer may be used
. It would seem in the first error that the compiler is definitely finding an issue.I've been trying to suss this out. It seems to be the temporary
Tensor
(i.e. anintrusive_ptr
) is having the issue.The text was updated successfully, but these errors were encountered: