Rename sp to splitPoint

Still keep 'sp' name when used as local
variable with limited scope.

From Jundery.

No functional change.
This commit is contained in:
Marco Costalba
2013-03-01 09:38:43 +01:00
parent 0fc9a01933
commit 0e1ad3ad33
3 changed files with 23 additions and 23 deletions

View File

@@ -374,4 +374,4 @@ Move MovePicker::next_move<false>() {
/// from the split point's shared MovePicker object. This function is not thread
/// safe so must be lock protected by the caller.
template<>
Move MovePicker::next_move<true>() { return ss->sp->movePicker->next_move<false>(); }
Move MovePicker::next_move<true>() { return ss->splitPoint->movePicker->next_move<false>(); }