Bump support/2.16 branch #92
1 changed files with 2 additions and 6 deletions
|
@ -346,16 +346,12 @@ func (o *Object) StableMarshal(buf []byte) []byte {
|
||||||
|
|
||||||
// SetMarshalData sets marshal data to reduce memory allocations.
|
// SetMarshalData sets marshal data to reduce memory allocations.
|
||||||
//
|
//
|
||||||
// It is unsafe to modify object data after setting marshal data.
|
// It is unsafe to modify/copy object data after setting marshal data.
|
||||||
func (o *Object) SetMarshalData(data []byte) {
|
func (o *Object) SetMarshalData(data []byte) {
|
||||||
if o == nil {
|
if o == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if data == nil {
|
o.marshalData = data
|
||||||
o.marshalData = o.StableMarshal(nil)
|
|
||||||
} else {
|
|
||||||
o.marshalData = data
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (o *Object) StableSize() (size int) {
|
func (o *Object) StableSize() (size int) {
|
||||||
|
|
Loading…
Reference in a new issue