diff options
| author | gingerBill <bill@gingerbill.org> | 2024-02-02 12:03:14 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-02-02 12:03:14 +0000 |
| commit | ae0a5b1a873dfd7d1aa8d6b6e6cb95edc10f3bf9 (patch) | |
| tree | e7f1675bb0185b12ff96c271c11c69c5ea048724 /base | |
| parent | 55ff9b857e5d143ba9b8271f8732bf43f5912dda (diff) | |
`RUNTIME_REQUIRE :: false`
Diffstat (limited to 'base')
| -rw-r--r-- | base/runtime/internal.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/runtime/internal.odin b/base/runtime/internal.odin index 4b85202fa..691f76ff1 100644 --- a/base/runtime/internal.odin +++ b/base/runtime/internal.odin @@ -11,7 +11,7 @@ RUNTIME_LINKAGE :: "strong" when ( ODIN_BUILD_MODE == .Dynamic || !ODIN_NO_CRT) && !IS_WASM) else "internal" -RUNTIME_REQUIRE :: !ODIN_TILDE +RUNTIME_REQUIRE :: false // !ODIN_TILDE @(private) __float16 :: f16 when __ODIN_LLVM_F16_SUPPORTED else u16 |