1
mirror of https://github.com/rclone/rclone synced 2024-11-13 12:09:47 +01:00
rclone/fstest/fstests/bits_go1_9.go
2018-10-11 14:47:58 +01:00

12 lines
127 B
Go

//+build go1.9
package fstests
import (
"math/bits"
)
func leadingZeros64(x uint64) int {
return bits.LeadingZeros64(x)
}