mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* Fix tests.cpp * Parser support for vector/string defaults * tests and default empty vectors * addressed comments * Default strings and vectors for Rust * Tested Rust more_defaults * git-clang-format * add more_defaults_test * fixed vector default * removed commented out code * more unreachable Co-authored-by: Casper Neo <cneo@google.com>
8 lines
134 B
Plaintext
8 lines
134 B
Plaintext
|
|
table MoreDefaults {
|
|
ints: [int] = [];
|
|
floats: [float] = [ ];
|
|
empty_string: string = "";
|
|
some_string: string = "some";
|
|
}
|