I have the following .proto file :
enum Enum1{
X=0;
Y=1;
}
message SomeClass{
required Enum1 enum1=1;
required Enum2 enum2=2;
}
enum Enum2{
X=0;
Z=1;
}
When I try to comile it using protoc , I get the following error :
proto.proto:19:5: "X" is already defined proto.proto:19:5: Note that enum values use C++ scoping rules, meaning that enum values are siblings of their type, not children of it. Therefore, "X" must be unique , not just within "Enum2".
I there any way I could overcome this issue !
You could include your enum inside another message so the visibility will not conflict.
Exemple :
You could also prefix your enum value with something. If you don't change the number after the name of your value, it should stay compatible with your old version : ex:
instead of
i think you should have something like
edit: you tagged this as Java, but in the question you refer to c++, witch one it is?
edit2: After googling a bit I found this http://www.mail-archive.com/protobuf@googlegroups.com/msg04986.html
you need to rename enum1.X or enum2.x to some other name so that they don't conflict.
if you really cant because of application dependencies i guess you need to redesign your program somehow..