mirror of
https://github.com/github/codeql.git
synced 2026-01-31 23:33:03 +01:00
6 lines
79 B
Go
6 lines
79 B
Go
package main
|
|
|
|
func isBitSetBad(x int, pos uint) bool {
|
|
return x&1<<pos != 0
|
|
}
|