Merge pull request #5753 from creack/fix-beam-32bit

[beam] Use direct iota instead of binary shift
Upstream-commit: ee4fa10fb018b30312dce86592ae6e23f0d588f2
Component: engine
This commit is contained in:
Solomon Hykes
2014-05-13 00:21:32 -07:00

View File

@ -30,7 +30,7 @@ type ReceiveSender interface {
}
const (
R int = 1 << (32 - 1 - iota)
R = iota
W
)