commit | b3375e006ef68bc0ac34a2125de52565a6f32d9e | [log] [tgz] |
---|---|---|
author | Austin Schuh <austin.linux@gmail.com> | Sat Nov 14 15:28:31 2020 -0800 |
committer | Austin Schuh <austin.linux@gmail.com> | Sat Nov 14 15:28:31 2020 -0800 |
tree | a83995e2a836c534f9e9e1abb00bee5302b6af31 | |
parent | ee8989528906537088be266e4e892507b471dff3 [diff] |
Convert y2014 to use explicit ids This makes it harder to accidentally break compatability Change-Id: Id0e5cdb56a1e442b7d39fd7c9f9424a192462462
diff --git a/build_tests/test.fbs b/build_tests/test.fbs index 71db3e7..ca153ac 100644 --- a/build_tests/test.fbs +++ b/build_tests/test.fbs
@@ -1,11 +1,11 @@ namespace aos.examples; table Foo { - value:int; + value:int32 (id: 0); } table Bar { - value:int; + value:int32 (id: 0); } root_type Foo;