Christoph Bajohr

Results 2 comments of Christoph Bajohr

Maybe you are right, this could be a breaking change on existing implementations. The thing is, that it's not obvious that this method converts the string to a base 8...

The problem is the `strconv.ParseInt(s, 0, 0)` in the ToInt methods. When I use `strconv.ParseInt(s, 10, 0)` instead it works like a charm. Like the strconv.ParseInt comment says: > If...