mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			188 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			188 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +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
 | 
						|
}
 |