diff options
Diffstat (limited to 'core/math')
| -rw-r--r-- | core/math/linalg/extended.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/linalg/extended.odin b/core/math/linalg/extended.odin index f6da366ba..b78697cbd 100644 --- a/core/math/linalg/extended.odin +++ b/core/math/linalg/extended.odin @@ -531,7 +531,7 @@ not_equal :: proc{not_equal_single, not_equal_array} any :: proc(x: $A/[$N]bool) -> (out: bool) { for e in x { - if x { + if e { return true } } |