Fix Windows build: correct build tags for platform-specific files

- process_metrics_unix.go: //go:build unix (for Linux, Darwin, BSD)
- process_metrics_windows.go: //go:build windows (unchanged)
- process_metrics_other.go: //go:build !unix && !windows (for plan9, js/wasm)
This commit is contained in:
Zach Kelling
2026-01-26 17:27:53 -08:00
parent f81ef1abac
commit d7e43de3af
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
// Copyright (C) 2020-2026, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
//go:build windows
//go:build !unix && !windows
package metric
+1 -1
View File
@@ -1,7 +1,7 @@
// Copyright (C) 2020-2026, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
//go:build !windows
//go:build unix
package metric