summary refs log tree commit diff stats
path: root/lib/pure/bitops.nim
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-08-08 19:24:45 -0700
committerGitHub <noreply@github.com>2021-08-08 19:24:45 -0700
commit988c02b7cbef634523b87af04097d06ed453dd61 (patch)
tree714f9d3adce550d0aa455af5be41e124b0261696 /lib/pure/bitops.nim
parenta7e622267e1049a454f4f522c0dbce5eb4017495 (diff)
downloadNim-988c02b7cbef634523b87af04097d06ed453dd61.tar.gz
renamed: lib/std/private/vmutils.nim -> lib/std/private/bitops_utils.nim to avoid confusion with unrelated std/vmutils (#18660)
Diffstat (limited to 'lib/pure/bitops.nim')
-rw-r--r--lib/pure/bitops.nim4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/pure/bitops.nim b/lib/pure/bitops.nim
index 6d3865e5d..1b3838621 100644
--- a/lib/pure/bitops.nim
+++ b/lib/pure/bitops.nim
@@ -27,9 +27,7 @@
 
 import macros
 import std/private/since
-from std/private/vmutils import forwardImpl, toUnsigned
-
-
+from std/private/bitops_utils import forwardImpl, toUnsigned
 
 func bitnot*[T: SomeInteger](x: T): T {.magic: "BitnotI".}
   ## Computes the `bitwise complement` of the integer `x`.