We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1261d37 commit eac6e3bCopy full SHA for eac6e3b
traverse.go
@@ -55,7 +55,7 @@ func (n *Networks) Next() bool {
55
"invalid search tree at %v/%v", ipRight, node.bit)
56
return false
57
}
58
- ipRight[node.bit>>3] |= 1 << uint(7-(node.bit%8))
+ ipRight[node.bit>>3] |= 1 << (7 - (node.bit % 8))
59
60
rightPointer, err := n.reader.readNode(node.pointer, 1)
61
if err != nil {
0 commit comments