summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/spkg/bom/discard_go15.go
blob: 2d17d5c5e150ad41ece25e66b9c6ac5732961944 (plain)
1
2
3
4
5
6
7
8
9
10
// +build go1.5

package bom

import "bufio"

func discardBytes(buf *bufio.Reader, n int) {
	// the Discard method was introduced in Go 1.5
	buf.Discard(n)
}