One additional reduction.

pull/84/head
Matt T. Proud 2013-03-18 12:41:51 -07:00
parent 73b463e814
commit bd8bb0edfd
1 changed files with 1 additions and 2 deletions

View File

@ -438,10 +438,9 @@ func optimizeForward(pending ops) (out ops) {
var (
head = ops{t}
tail = pending
)
pending = append(head, tail...)
pending = append(head, pending...)
}
case *getValuesAtIntervalOp:
pending = pending[1:len(pending)]