diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-28 11:34:35 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-28 11:34:35 -0400 |
| commit | 2af121752aac9def728618bd4e2cbc9d90693e7e (patch) | |
| tree | 904339d49029b89c696b146827b49bc9e6246315 /core/math | |
| parent | 37afd469c6f14cabb8346f2468a8c2ea3223df73 (diff) | |
Require `base:runtime` import in `core:math/linalg`
Diffstat (limited to 'core/math')
| -rw-r--r-- | core/math/linalg/general.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/linalg/general.odin b/core/math/linalg/general.odin index 37c0447cb..90fe7332c 100644 --- a/core/math/linalg/general.odin +++ b/core/math/linalg/general.odin @@ -3,7 +3,7 @@ package linalg import "core:math" import "base:builtin" import "base:intrinsics" -import "base:runtime" +@require import "base:runtime" // Generic |