diff options
author | Casper <casperneo@uchicago.edu> | 2020-09-11 14:20:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 14:20:32 -0700 |
commit | c75ae242931821a5e50c1221d425a2629adb871b (patch) | |
tree | bcf2b67aeee5547c208cf31efa274d39f0ac2630 /reflection | |
parent | 338944d3d925b4ed36f4c214c689feea071f97de (diff) | |
download | flatbuffers-c75ae242931821a5e50c1221d425a2629adb871b.tar.gz flatbuffers-c75ae242931821a5e50c1221d425a2629adb871b.tar.bz2 flatbuffers-c75ae242931821a5e50c1221d425a2629adb871b.zip |
Optional-ness in reflection (#6097)
* Optional scalars in reflection
* fixed name collision
* Remove code duplicated by merge
Co-authored-by: Casper Neo <cneo@google.com>
Diffstat (limited to 'reflection')
-rw-r--r-- | reflection/reflection.fbs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/reflection/reflection.fbs b/reflection/reflection.fbs index 3c8fa4b2..d9e2dc47 100644 --- a/reflection/reflection.fbs +++ b/reflection/reflection.fbs @@ -74,6 +74,7 @@ table Field { key:bool = false; attributes:[KeyValue]; documentation:[string]; + optional:bool = false; } table Object { // Used for both tables and structs. |