Enable unsafe.

This commit is contained in:
Vladimir Mihailenco 2015-09-04 13:30:37 +03:00
parent bd58c2dde4
commit a689c20777
1 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,13 @@
package redis
import (
"reflect"
"unsafe"
)
func bytesToString(b []byte) string {
return string(b)
bytesHeader := (*reflect.SliceHeader)(unsafe.Pointer(&b))
strHeader := reflect.StringHeader{bytesHeader.Data, bytesHeader.Len}
return *(*string)(unsafe.Pointer(&strHeader))
}