a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
18 lignes
290 o
Go
18 lignes
290 o
Go
// +build !appengine
|
|
|
|
package fwd
|
|
|
|
import (
|
|
"reflect"
|
|
"unsafe"
|
|
)
|
|
|
|
// unsafe cast string as []byte
|
|
func unsafestr(b string) []byte {
|
|
l := len(b)
|
|
return *(*[]byte)(unsafe.Pointer(&reflect.SliceHeader{
|
|
Len: l,
|
|
Cap: l,
|
|
Data: (*reflect.StringHeader)(unsafe.Pointer(&b)).Data,
|
|
}))
|
|
}
|