summaryrefslogtreecommitdiff
path: root/vendor/github.com/google/certificate-transparency-go/x509/nilref_zero_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/google/certificate-transparency-go/x509/nilref_zero_darwin.go')
-rw-r--r--vendor/github.com/google/certificate-transparency-go/x509/nilref_zero_darwin.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/github.com/google/certificate-transparency-go/x509/nilref_zero_darwin.go b/vendor/github.com/google/certificate-transparency-go/x509/nilref_zero_darwin.go
deleted file mode 100644
index 6d8ad49866..0000000000
--- a/vendor/github.com/google/certificate-transparency-go/x509/nilref_zero_darwin.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build cgo,!arm,!arm64,!ios,go1.10
-
-package x509
-
-/*
-#cgo CFLAGS: -mmacosx-version-min=10.6 -D__MAC_OS_X_VERSION_MAX_ALLOWED=1080
-#cgo LDFLAGS: -framework CoreFoundation -framework Security
-
-#include <CoreFoundation/CoreFoundation.h>
-*/
-import "C"
-
-// For Go versions >= 1.10, nil values for Apple's CoreFoundation
-// CF*Ref types are represented by zero. See:
-// https://github.com/golang/go/commit/b868616b63a8
-func setNilCFRef(v *C.CFDataRef) {
- *v = 0
-}
-
-func isNilCFRef(v C.CFDataRef) bool {
- return v == 0
-}