Restore the ''import "unsafe'' removed in 36daedf35f
.
This was causing build failures with tools dependent on Flatbuffers in Go. E.g. go/src/github.com/google/flatbuffers/go/sizes.go:50: undefined: unsafe in unsafe.Pointer
This commit is contained in:
parent
0de4f3f75b
commit
dc5975ba7a
|
@ -1,5 +1,9 @@
|
|||
package flatbuffers
|
||||
|
||||
import (
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
const (
|
||||
// See http://golang.org/ref/spec#Numeric_types
|
||||
|
||||
|
|
Loading…
Reference in New Issue