Merge pull request #4212 from karl-zylinski/fix-build-tags

Fix build tags that use ! multiple times on one line.
This commit is contained in:
Laytan
2024-09-07 22:18:29 +02:00
committed by GitHub
5 changed files with 16 additions and 5 deletions

View File

@@ -1,4 +1,6 @@
//+build !windows !linux !darwin
//+build !windows
//+build !linux
//+build !darwin
package debug_trace
import "base:runtime"

View File

@@ -1,4 +1,5 @@
//+build !netbsd !openbsd
//+build !netbsd
//+build !openbsd
package flags
import "base:runtime"

View File

@@ -1,5 +1,6 @@
//+private
//+build !netbsd !openbsd
//+build !netbsd
//+build !openbsd
package flags
import "core:net"

View File

@@ -1,5 +1,11 @@
//+private
//+build !windows !linux !darwin !freebsd !openbsd !netbsd !haiku
//+build !windows
//+build !linux
//+build !darwin
//+build !freebsd
//+build !openbsd
//+build !netbsd
//+build !haiku
package testing
/*

View File

@@ -10,7 +10,8 @@
A test suite for `core:net`
*/
//+build !netbsd !openbsd
//+build !netbsd
//+build !openbsd
package test_core_net
import "core:testing"