14 lines
188 B
Go
Raw Normal View History

2019-07-09 09:53:46 +02:00
// +build go1.4
package ldap
import (
"sync/atomic"
)
// For compilers that support it, we just use the underlying sync/atomic.Value
// type.
type atomicValue struct {
atomic.Value
}