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
Upon binding The-Forge, we found a case where it has a function with a parameter called align. This causes a compile error because align is also a Zig keyword. c2z should replace it with @"align".
I believe this is done in one or two other places so hopefully should be a function call that's needed somewhere. :)
The text was updated successfully, but these errors were encountered:
Yes, this is because, of the no-glue option it avoids generating the c++ glue, but it will be target specific and add use mangled function names these can be something like "?foo@@YAXHD@Z".
the @"" used to be removed during formatting ...
Also I have a function keywordFix that isn't been used, but maybe just decorating names with @"" will be better
Upon binding The-Forge, we found a case where it has a function with a parameter called
align
. This causes a compile error because align is also a Zig keyword. c2z should replace it with@"align"
.I believe this is done in one or two other places so hopefully should be a function call that's needed somewhere. :)
The text was updated successfully, but these errors were encountered: