aboutsummaryrefslogtreecommitdiff
path: root/core/math/big/logical.odin
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2021-08-10 20:52:55 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2021-08-11 20:59:54 +0200
commit6c681b258c7118b4a6aa7bf27af38f5556ad7599 (patch)
tree6346b3904c1a9352d24b8d4c2fbf0c8d0fc5ae8c /core/math/big/logical.odin
parent1f91a2fe653137337411aaab4959f51a2dd710e1 (diff)
big: Add `_private_int_sqr_comba`.
Diffstat (limited to 'core/math/big/logical.odin')
-rw-r--r--core/math/big/logical.odin2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/math/big/logical.odin b/core/math/big/logical.odin
index 1050de0c4..f72ecb18d 100644
--- a/core/math/big/logical.odin
+++ b/core/math/big/logical.odin
@@ -11,8 +11,6 @@ package big
This file contains logical operations like `and`, `or` and `xor`.
*/
-import "core:mem"
-
/*
The `and`, `or` and `xor` binops differ in two lines only.
We could handle those with a switch, but that adds overhead.