Comparing pointers pointing to distinct objects is undefined behaviour.
Instead, perform the comparison over integers, which is
implementation-defined behaviour.
This fix also contributes to addressing #1266, but several more tasks have this problem. Thus I instead opted to fix it for all of them.
Comparing pointers pointing to distinct objects is undefined behaviour. Instead, perform the comparison over integers, which is implementation-defined behaviour.
This fix also contributes to addressing #1266, but several more tasks have this problem. Thus I instead opted to fix it for all of them.