You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a problem with the convert'bytes_to_bool construction in the file main_bench_test.go (although it seems not to have been used in testing)
for _, in := range byteArray {
for i := 7; i > 0; i-- {
if in&(1<<i) > 0 {
X[i] = true
}
}
}
X will be repeatedly overwritten by the top 7 digits
The text was updated successfully, but these errors were encountered:
Is there a problem with the convert'bytes_to_bool construction in the file main_bench_test.go (although it seems not to have been used in testing)
for _, in := range byteArray {
for i := 7; i > 0; i-- {
if in&(1<<i) > 0 {
X[i] = true
}
}
}
X will be repeatedly overwritten by the top 7 digits
The text was updated successfully, but these errors were encountered: