1
0
mirror of https://github.com/rclone/rclone.git synced 2025-04-14 00:58:59 +02:00
rclone/fstest/fstests/bits_go1_9.go

12 lines
127 B
Go
Raw Normal View History

2018-09-07 12:45:28 +02:00
//+build go1.9
package fstests
import (
"math/bits"
)
func leadingZeros64(x uint64) int {
return bits.LeadingZeros64(x)
}