diff options
| author | gingerBill <bill@gingerbill.org> | 2020-04-04 13:48:53 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-04-04 13:48:53 +0100 |
| commit | 3f638f92e2d6973b25e96c2f6ca0cf1522c814cf (patch) | |
| tree | 65c75da7992f027a3cb9a5057c5283fecf851925 /core/runtime | |
| parent | b0d668d2542703f403032b00d0edb0a2243392db (diff) | |
Fix `-vet` warning in core.odin for `intrinsics` not being used
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index 13b3ef008..3ef992e8e 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -5,6 +5,7 @@ package runtime import "core:os" import "intrinsics" +_ :: intrinsics; // Naming Conventions: // In general, Ada_Case for types and snake_case for values |