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
::Array<::Dynamic> thing = ...; // thing->length is 0 Pointer_obj::ofArray(thing) //thing->length is 1
This seems to be caused by doing &array[0] if instead I manually do cpp::AutoCast(&thing) then it works as expected.
&array[0]
cpp::AutoCast(&thing)
This affects any use of Pointer.ofArray on empty array from the Haxe side as well.
Pointer.ofArray
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This seems to be caused by doing
&array[0]
if instead I manually docpp::AutoCast(&thing)
then it works as expected.This affects any use of
Pointer.ofArray
on empty array from the Haxe side as well.The text was updated successfully, but these errors were encountered: