1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00
v2fly/common/stack/bytes.go
Isaac 588b40ffad
Fix a typo
Fix a typo in bytes.go
2020-08-25 17:55:53 +08:00

12 lines
222 B
Go

package stack
// TwoBytes is a [2]byte which is always allocated on stack.
//
//go:notinheap
type TwoBytes [2]byte
// EightBytes is a [8]byte which is always allocated on stack.
//
//go:notinheap
type EightBytes [8]byte