j
k
j a
j l
Christian Henning wrote:
a += (1 << 31);
1u << 31 to be on the safe side; 1 << 31 (shifting into the sign bit) is undefined by itself. (It was accidentally made defined by C++17 but will probably revert to undefined.)
Back to the thread
Back to the list