Rename *last to *end

It is a more correct name because it points past the
last move of the list.

No functional change.
This commit is contained in:
Marco Costalba
2012-09-09 10:17:31 +02:00
parent 6e840f8033
commit 834bd9edd7
3 changed files with 60 additions and 60 deletions

View File

@@ -57,7 +57,7 @@ private:
MoveStack killers[2];
Square recaptureSquare;
int captureThreshold, phase;
MoveStack *curMove, *lastMove, *lastQuiet, *lastBadCapture;
MoveStack *cur, *end, *endQuiets, *endBadCaptures;
MoveStack moves[MAX_MOVES];
};