mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-01 17:57:25 +00:00
Adds flag to the cpp to fix bad annotations in all the languages Addresses comments to the PR, and fixes logic for leaking annotations
18 lines
No EOL
215 B
Text
18 lines
No EOL
215 B
Text
enum AB:byte (private) {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
struct Object (private) {
|
|
value: int;
|
|
}
|
|
|
|
union Any (private) { Game, Annotations }
|
|
|
|
table Game (private) {
|
|
value: int;
|
|
}
|
|
|
|
table Annotations (private) {
|
|
value: int;
|
|
} |