youtubebeat/vendor/github.com/antchfx/xpath/func_go110.go

10 lines
105 B
Go
Raw Normal View History

2018-11-18 15:32:28 +01:00
// +build go1.10
package xpath
import "math"
func round(f float64) int {
return int(math.Round(f))
}