summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-ldap/ldap/atomic_value.go
blob: bccf7573e0e3df9479d158dc6da84fc5cb6b4253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +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
}