]> git.sesse.net Git - stockfish/commit
Remove strange use of the ternary operator
authorjundery <jundery@gmail.com>
Thu, 28 Feb 2013 05:18:11 +0000 (22:18 -0700)
committerMarco Costalba <mcostalba@gmail.com>
Fri, 1 Mar 2013 07:05:47 +0000 (08:05 +0100)
commit0fc9a01933ce33fda3732c1d5bbde5a8908d0019
tree0ecb679db6f767c3e8720f38cfa3570cb4bf5e50
parent68d1bebd8e030d7ca84158d36bb352126f0a72ee
Remove strange use of the ternary operator

Note that we read shared data without lock
protection, so code is theoretically prone to
torn reads. But, first splitPoint pointer
never changes, and alpha is of integer type so
it is read in a single DWORD access.

No functional change.
src/search.cpp