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 837dfaa commit aa3d476Copy full SHA for aa3d476
parser.go
@@ -4,7 +4,6 @@ import (
4
"bytes"
5
"errors"
6
"fmt"
7
- "math"
8
"strconv"
9
)
10
@@ -356,14 +355,6 @@ func searchKeys(data []byte, keys ...string) int {
356
355
return -1
357
}
358
359
-var bitwiseFlags []int64
360
-
361
-func init() {
362
- for i := 0; i < 63; i++ {
363
- bitwiseFlags = append(bitwiseFlags, int64(math.Pow(2, float64(i))))
364
- }
365
-}
366
367
func sameTree(p1, p2 []string) bool {
368
minLen := len(p1)
369
if len(p2) < minLen {
0 commit comments