aboutsummaryrefslogtreecommitdiffstats
path: root/binapigen/types.go
diff options
context:
space:
mode:
authorOndrej Fabry <ofabry@cisco.com>2020-07-22 04:40:55 +0200
committerOndrej Fabry <ofabry@cisco.com>2020-07-22 04:40:55 +0200
commit58da9ac6e691a8c660eb8ca838a154e11da0db68 (patch)
treea1bbda04c6d0621ce0fc20779276620f1820190b /binapigen/types.go
parenta155cd438c6558da266c1c5931361ea088b35653 (diff)
Fix binapigen decoding and minor improvements
- fixed allocating byte slices before copying decoded data - simplified encoding functions - several minor improvements Change-Id: I6669424b89eb86333805cb1b57e4551169980cc2 Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Diffstat (limited to 'binapigen/types.go')
-rw-r--r--binapigen/types.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/binapigen/types.go b/binapigen/types.go
index 0a21622..1d0dae5 100644
--- a/binapigen/types.go
+++ b/binapigen/types.go
@@ -87,8 +87,10 @@ func fieldActualType(field *Field) (actual string) {
actual = field.TypeAlias.Type
case field.TypeEnum != nil:
actual = field.TypeEnum.Type
+ default:
+ actual = field.Type
}
- return field.Type
+ return
}
func fieldGoType(g *GenFile, field *Field) string {