mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #5753 from creack/fix-beam-32bit
[beam] Use direct iota instead of binary shift
This commit is contained in:
commit
ee4fa10fb0
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ type ReceiveSender interface {
|
|||
}
|
||||
|
||||
const (
|
||||
R int = 1 << (32 - 1 - iota)
|
||||
R = iota
|
||||
W
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue