This repository has been archived on 2026-08-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2018-09-11 22:25:24 +01: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
|
|
|
|
|
}
|