projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
13fe7ee
)
Fix a shadowed variable warning under gcc
author
Marco Costalba
<mcostalba@gmail.com>
Mon, 23 May 2011 08:18:26 +0000 (10:18 +0200)
committer
Marco Costalba
<mcostalba@gmail.com>
Mon, 23 May 2011 19:20:19 +0000 (20:20 +0100)
No functional change.
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/position.cpp
patch
|
blob
|
history
diff --git
a/src/position.cpp
b/src/position.cpp
index
52aa93e
..
3cc3bfe
100644
(file)
--- a/
src/position.cpp
+++ b/
src/position.cpp
@@
-591,9
+591,7
@@
bool Position::pl_move_is_legal(Move m, Bitboard pinned) const {
// after the move is made
if (move_is_ep(m))
{
- Color us = side_to_move();
Color them = opposite_color(us);
- Square from = move_from(m);
Square to = move_to(m);
Square capsq = make_square(square_file(to), square_rank(from));
Square ksq = king_square(us);