]> git.sesse.net Git - stockfish/commit
Fix compile error in debug mode
authorMarco Costalba <mcostalba@gmail.com>
Sun, 16 Oct 2011 22:56:25 +0000 (23:56 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sun, 16 Oct 2011 22:56:25 +0000 (23:56 +0100)
commit782c3f36ccd4aeb52fd7eb92590d5e5e48741eaa
treed5a02456253487ec828d5e577adb8b1a179485bf
parent8272dcb6cd42c5c92ce7bb77797d52aebc83355b
Fix compile error in debug mode

Build broken by commit 3141490374182551ed2
where we renamed move_is_ok() in is_ok() and this clashes
with the same named method in Position that overrides the
move's one causing compile errors.

The fix is to rename the method in Position.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/position.cpp
src/position.h
src/thread.cpp