malign struct fields

This commit is contained in:
Vladimir Mihailenco 2019-08-08 14:22:01 +03:00
parent e0fed4d581
commit 87225c1cf9
1 changed files with 2 additions and 2 deletions

View File

@ -28,11 +28,11 @@ func (e BadConnError) Unwrap() error {
type SingleConnPool struct {
pool Pooler
level int32 // atomic
state uint32 // atomic
ch chan *Conn
level int32 // atomic
_badConnError atomic.Value
}