aboutsummaryrefslogtreecommitdiff
path: root/core/flags
diff options
context:
space:
mode:
authorKarl Zylinski <karl@zylinski.se>2024-09-14 18:27:49 +0200
committerKarl Zylinski <karl@zylinski.se>2024-09-14 18:27:49 +0200
commit19f0127e553940bb333f61ab7e8dab6f7455115e (patch)
tree30705898942106f3341d1decec4d335ac15b28cd /core/flags
parentb12d3124085058bc36f2e8feb5666a0c1f162343 (diff)
Moved all packages in core, base, vendor, tests and examples to use new #+ file tag syntax.
Diffstat (limited to 'core/flags')
-rw-r--r--core/flags/errors_bsd.odin2
-rw-r--r--core/flags/errors_nonbsd.odin4
-rw-r--r--core/flags/internal_assignment.odin2
-rw-r--r--core/flags/internal_parsing.odin2
-rw-r--r--core/flags/internal_rtti.odin2
-rw-r--r--core/flags/internal_rtti_nonbsd.odin6
-rw-r--r--core/flags/internal_validation.odin2
7 files changed, 10 insertions, 10 deletions
diff --git a/core/flags/errors_bsd.odin b/core/flags/errors_bsd.odin
index 1fe6de90b..4d98d2ee4 100644
--- a/core/flags/errors_bsd.odin
+++ b/core/flags/errors_bsd.odin
@@ -1,4 +1,4 @@
-//+build netbsd, openbsd
+#+build netbsd, openbsd
package flags
import "base:runtime"
diff --git a/core/flags/errors_nonbsd.odin b/core/flags/errors_nonbsd.odin
index e129aff74..28912b57f 100644
--- a/core/flags/errors_nonbsd.odin
+++ b/core/flags/errors_nonbsd.odin
@@ -1,5 +1,5 @@
-//+build !netbsd
-//+build !openbsd
+#+build !netbsd
+#+build !openbsd
package flags
import "base:runtime"
diff --git a/core/flags/internal_assignment.odin b/core/flags/internal_assignment.odin
index be3997ef1..12ddb876f 100644
--- a/core/flags/internal_assignment.odin
+++ b/core/flags/internal_assignment.odin
@@ -1,4 +1,4 @@
-//+private
+#+private
package flags
import "base:intrinsics"
diff --git a/core/flags/internal_parsing.odin b/core/flags/internal_parsing.odin
index 7a769b17c..4e49f45b0 100644
--- a/core/flags/internal_parsing.odin
+++ b/core/flags/internal_parsing.odin
@@ -1,4 +1,4 @@
-//+private
+#+private
package flags
import "core:container/bit_array"
diff --git a/core/flags/internal_rtti.odin b/core/flags/internal_rtti.odin
index 4c1db5d0b..1c559ca55 100644
--- a/core/flags/internal_rtti.odin
+++ b/core/flags/internal_rtti.odin
@@ -1,4 +1,4 @@
-//+private
+#+private
package flags
import "base:intrinsics"
diff --git a/core/flags/internal_rtti_nonbsd.odin b/core/flags/internal_rtti_nonbsd.odin
index 0044898d5..e1286186b 100644
--- a/core/flags/internal_rtti_nonbsd.odin
+++ b/core/flags/internal_rtti_nonbsd.odin
@@ -1,6 +1,6 @@
-//+private
-//+build !netbsd
-//+build !openbsd
+#+private
+#+build !netbsd
+#+build !openbsd
package flags
import "core:net"
diff --git a/core/flags/internal_validation.odin b/core/flags/internal_validation.odin
index b71cf9fe7..afd05331c 100644
--- a/core/flags/internal_validation.odin
+++ b/core/flags/internal_validation.odin
@@ -1,4 +1,4 @@
-//+private
+#+private
package flags
@require import "base:runtime"