One additional reduction.

This commit is contained in:
Matt T. Proud 2013-03-18 12:41:51 -07:00
parent 73b463e814
commit bd8bb0edfd

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)]