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