2023-01-28 05:37:20 +08:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-05-13 04:12:41 +08:00
|
|
|
|
2021-08-06 06:42:39 +08:00
|
|
|
//go:build !race
|
2021-05-13 04:12:41 +08:00
|
|
|
|
|
|
|
package version
|
|
|
|
|
|
|
|
// IsRace reports whether the current binary was built with the Go
|
|
|
|
// race detector enabled.
|
|
|
|
func IsRace() bool { return false }
|