mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-18 10:24:27 +00:00
Fix the proto-enum leaking issue (#5286)
* Detect leak with sanitizer * Fix proto-enum leak issue
This commit is contained in:
committed by
Wouter van Oortmerssen
parent
2bd4a27550
commit
60340ac529
@@ -4,6 +4,7 @@ namespace proto.test;
|
||||
|
||||
/// Enum doc comment.
|
||||
enum ProtoEnum : int {
|
||||
NUL = 0,
|
||||
FOO = 1,
|
||||
/// Enum 2nd value doc comment misaligned.
|
||||
BAR = 5,
|
||||
|
||||
@@ -8,6 +8,7 @@ package proto.test;
|
||||
/// Enum doc comment.
|
||||
enum ProtoEnum {
|
||||
option allow_alias = true;
|
||||
NUL = 0;
|
||||
FOO = 1;
|
||||
/// Enum 2nd value doc comment misaligned.
|
||||
BAR = 5;
|
||||
|
||||
@@ -4,6 +4,7 @@ namespace proto.test;
|
||||
|
||||
/// Enum doc comment.
|
||||
enum ProtoEnum : int {
|
||||
NUL = 0,
|
||||
FOO = 1,
|
||||
/// Enum 2nd value doc comment misaligned.
|
||||
BAR = 5,
|
||||
|
||||
Reference in New Issue
Block a user