diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-08-08 21:02:35 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-08-08 21:02:35 +0200 |
| commit | a05b73c632b271a8137ed742e7eb9e58c91bee74 (patch) | |
| tree | 74212387fc7caf13a157ad02f661f4e27f662524 /core | |
| parent | 4d27898418e3bdf8d6de5baccc135e2146085349 (diff) | |
Keep -vet happy when mem tracking is disabled.
Diffstat (limited to 'core')
| -rw-r--r-- | core/testing/testing.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/testing/testing.odin b/core/testing/testing.odin index b7cd23adf..ea779b8f3 100644 --- a/core/testing/testing.odin +++ b/core/testing/testing.odin @@ -10,6 +10,7 @@ import "core:time" import "core:mem" _ :: reflect // alias reflect to nothing to force visibility for -vet +_ :: mem // in case TRACKING_MEMORY is not enabled // IMPORTANT NOTE: Compiler requires this layout Test_Signature :: proc(^T) |