diff options
| author | Karl Zylinski <karl@zylinski.se> | 2024-09-07 22:02:17 +0200 |
|---|---|---|
| committer | Karl Zylinski <karl@zylinski.se> | 2024-09-07 22:02:17 +0200 |
| commit | 8c636ac37b7cd0bb8405862fe9e003b7e67287b4 (patch) | |
| tree | 5c5dc38e0eba6801b9dffcc21f1a99dfb10139cc /core/debug | |
| parent | a99e57c62c1c2d6b0e7a5fcd841eba79e9255d5b (diff) | |
Fix build tags that use ! multiple times on one line. Those don't actually do anything since build tags use OR within the line. So something like //+build !windows, !linux would actually build on both linux and windows. What was intended in all these cases was probably AND, which you get by splitting them into separate lines.
Diffstat (limited to 'core/debug')
| -rw-r--r-- | core/debug/trace/trace_nil.odin | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/debug/trace/trace_nil.odin b/core/debug/trace/trace_nil.odin index 8611d7726..ca8bd7817 100644 --- a/core/debug/trace/trace_nil.odin +++ b/core/debug/trace/trace_nil.odin @@ -1,4 +1,6 @@ -//+build !windows !linux !darwin +//+build !windows +//+build !linux +//+build !darwin package debug_trace import "base:runtime" |