Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Before this commit, if __optr is == or !=, the if condition on line 1052 is unintendedly interpreted as ((real_t)(opndv1.data.integer __optr opndv2.data.integer) == (real_t)opndv1.data.integer) __optr (real_t)opndv2.data.integer because the associativity of != and == operators in C is left-to-right. Fixed by fully parenthesize the complex comparison expression.
- Loading branch information