Add float support to binary event log.

Bug: 20664753
Change-Id: Iab232b1f172094919839d57f15644dfb2eaa1425
This commit is contained in:
Jeff Brown 2015-04-28 12:46:22 -07:00
parent 22f1bc5db2
commit 7f2ceab5af
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ def javaName(name):
out += "_"
return out
javaTypes = ["ERROR", "int", "long", "String", "Object[]"]
javaTypes = ["ERROR", "int", "long", "String", "Object[]", "float"]
for t in tagfile.tags:
methodName = javaName("write_" + t.tagname)
if t.description: