mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-26 06:12:40 +00:00
Added min/max values for enums/unions.
Bug: 21642898 Change-Id: Ifaf0b3c4274fe30ef29507ba1c1216d700efe85b Tested: on Linux.
This commit is contained in:
@@ -15,7 +15,9 @@ struct StructInNestedNS;
|
||||
enum EnumInNestedNS {
|
||||
EnumInNestedNS_A = 0,
|
||||
EnumInNestedNS_B = 1,
|
||||
EnumInNestedNS_C = 2
|
||||
EnumInNestedNS_C = 2,
|
||||
EnumInNestedNS_MIN_VAL = EnumInNestedNS_A,
|
||||
EnumInNestedNS_MAX_VAL = EnumInNestedNS_C
|
||||
};
|
||||
|
||||
inline const char **EnumNamesEnumInNestedNS() {
|
||||
|
||||
Reference in New Issue
Block a user