panic.go 252 B

123456789101112
  1. package libbox
  2. // https://github.com/golang/go/issues/46893
  3. // TODO: remove after `bulkBarrierPreWrite: unaligned arguments` fixed
  4. type StringBox struct {
  5. Value string
  6. }
  7. func wrapString(value string) *StringBox {
  8. return &StringBox{Value: value}
  9. }