Skip to content

Commit

Permalink
renamed: lib/std/private/vmutils.nim -> lib/std/private/bitops_utils.…
Browse files Browse the repository at this point in the history
…nim to avoid confusion with unrelated std/vmutils (nim-lang#18660)
  • Loading branch information
timotheecour authored and PMunch committed Mar 28, 2022
1 parent 54fe1fd commit 980a2df
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions lib/pure/bitops.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/system/countbits_impl.nim
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

## Contains the used algorithms for counting bits.

from std/private/vmutils import forwardImpl, toUnsigned
from std/private/bitops_utils import forwardImpl, toUnsigned


const useBuiltins* = not defined(noIntrinsicsBitOpts)
Expand Down

0 comments on commit 980a2df

Please sign in to comment.