Skip to content

Commit

Permalink
func inc is no longer required
Browse files Browse the repository at this point in the history
  • Loading branch information
vaskoz committed Jul 12, 2021
1 parent e744e3a commit 30f27e7
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@ import (
"text/tabwriter"
)

func inc(ip net.IP) {
for j := len(ip) - 1; j >= 0; j-- {
ip[j]++
if ip[j] > 0 {
break
}
}
}

func main() {
log.SetPrefix("")
log.SetFlags(0)
Expand Down

0 comments on commit 30f27e7

Please sign in to comment.