You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the Load handler, we need to emit the cast in the form `TYPE const *` rather than `const TYPE *`, as TYPE could be `void *`, and the const would bind in a way we don't want.
in the Load handler, we need to emit the cast in the form `TYPE const *` rather than `const TYPE *`, as TYPE could be `void *`, and the const would bind in a way we don't want.
Steps
release/13.x
halide python bindingsg++
into an objectExpected: Since
TargetFeature.CPlusPlusMangling
is enabled, I can compile the generated C source withg++
.Actual: Compile error. I extracted the offending code to https://www.godbolt.org/z/bTbT7PKaT
Here are the two offending snippets
The text was updated successfully, but these errors were encountered: