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
Expected output:
withMoveConstructor worked, withCopyConstructor worked
Actual output:
withMoveConstructor failed, withCopyConstructor worked
I expect this is related to #300. Is there any chance this can be fixed? In this example it simply failed to set the value but I have run into a lot of cases where it produces a segmentation fault instead.
The text was updated successfully, but these errors were encountered:
You always should store the value to Php::Value, and store Php::Vaue into z_val. Notice: c are typed, so param are refenced by z_val, but param[0] are pointed to hashtable of zend engine.
In other words, param[0] aren't reference variable
The following code produces an unexpected result:
Expected output:
withMoveConstructor worked, withCopyConstructor worked
Actual output:
withMoveConstructor failed, withCopyConstructor worked
I expect this is related to #300. Is there any chance this can be fixed? In this example it simply failed to set the value but I have run into a lot of cases where it produces a segmentation fault instead.
The text was updated successfully, but these errors were encountered: