projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
2f2e8a6
)
Fix an icc warning
author
Marco Costalba
<mcostalba@gmail.com>
Sun, 21 Feb 2010 14:07:53 +0000 (15:07 +0100)
committer
Marco Costalba
<mcostalba@gmail.com>
Sun, 21 Feb 2010 14:07:53 +0000 (15:07 +0100)
remark #1599: declaration hides variable "i" (declared at line 2651)
No functional change.
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/search.cpp
patch
|
blob
|
history
diff --git
a/src/search.cpp
b/src/search.cpp
index
197928f
..
738955f
100644
(file)
--- a/
src/search.cpp
+++ b/
src/search.cpp
@@
-2660,7
+2660,7
@@
namespace {
lock_init(&IOLock, NULL);
// Initialize SplitPointStack locks
- for (int i = 0; i < MAX_THREADS; i++)
+ for (i = 0; i < MAX_THREADS; i++)
for (int j = 0; j < ACTIVE_SPLIT_POINTS_MAX; j++)
{
SplitPointStack[i][j].parent = NULL;