Misc coding style fixes

a few comment and blank fixes.

No functional change

Closes #1141
This commit is contained in:
Alain SAVARD
2017-06-11 17:31:15 -04:00
committed by Joona Kiiski
parent b73016bb41
commit 2c237da546
6 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ namespace {
// History and stats update bonus, based on depth
int stat_bonus(Depth depth) {
int d = depth / ONE_PLY ;
int d = depth / ONE_PLY;
return d > 17 ? 0 : d * d + 2 * d - 2;
}