Browse Source

Use `#+` tags

gingerBill 11 months ago
parent
commit
68960e7d0a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      core/crypto/hash/hash_freestanding.odin
  2. 1 1
      core/crypto/hash/hash_os.odin

+ 1 - 1
core/crypto/hash/hash_freestanding.odin

@@ -1,4 +1,4 @@
-//+build freestanding
+#+build freestanding
 package crypto_hash
 
 hash :: proc {

+ 1 - 1
core/crypto/hash/hash_os.odin

@@ -1,4 +1,4 @@
-//+build !freestanding
+#+build !freestanding
 package crypto_hash
 
 import "core:io"