Skip to content

Commit 1bdf86b

Browse files
panjf2000thinkerou
andauthoredFeb 8, 2021
Remove the tedious named return value (#2620)
Co-authored-by: thinkerou <thinkerou@gmail.com>
1 parent e899771 commit 1bdf86b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎internal/bytesconv/bytesconv.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
)
1010

1111
// StringToBytes converts string to byte slice without a memory allocation.
12-
func StringToBytes(s string) (b []byte) {
12+
func StringToBytes(s string) []byte {
1313
return *(*[]byte)(unsafe.Pointer(
1414
&struct {
1515
string

0 commit comments

Comments
 (0)