race_off.go 247 B

12345678910
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. //go:build !race
  4. package version
  5. // IsRace reports whether the current binary was built with the Go
  6. // race detector enabled.
  7. func IsRace() bool { return false }