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
Describe the bug
XOR operation unexpectedly calls AddOp instead of BitXorOp. This behavior does not align with the expected functionality.
To Reproduce
Steps to reproduce the behavior:
Run the program on Windows 11 with version v5.2.3.
Execute an XOR operation in the affected module.
Observe the call stack or execution flow.
Notice that AddOp is invoked instead of BitXorOp.
Expected behavior
The XOR operation should correctly call BitXorOp to ensure the intended functionality is preserved.
Desktop (please complete the following information):
OS: Windows 11
Version: v5.2.3
Additional context
Testing indicates that this issue can be resolved by modifying specific parts of the codebase. Further details can be provided upon request.
The text was updated successfully, but these errors were encountered:
Describe the bug
XOR operation unexpectedly calls
AddOp
instead ofBitXorOp
. This behavior does not align with the expected functionality.To Reproduce
Steps to reproduce the behavior:
AddOp
is invoked instead ofBitXorOp
.Expected behavior
The XOR operation should correctly call
BitXorOp
to ensure the intended functionality is preserved.Desktop (please complete the following information):
Additional context
Testing indicates that this issue can be resolved by modifying specific parts of the codebase. Further details can be provided upon request.
The text was updated successfully, but these errors were encountered: