2
0

optimise struct padding

This commit is contained in:
bakape
2020-07-10 19:41:25 +03:00
parent 5576567c19
commit 193ecfec73
+3 -2
View File
@@ -15,11 +15,12 @@ import (
type ArrayType struct {
elements []ValueTranscoder
dimensions []ArrayDimension
status Status
typeName string
elementOID uint32
newElement func() ValueTranscoder
elementOID uint32
status Status
}
func NewArrayType(typeName string, elementOID uint32, newElement func() ValueTranscoder) *ArrayType {