aboutsummaryrefslogtreecommitdiffstats
path: root/tests/oneof
AgeCommit message (Collapse)AuthorFilesLines
2015-09-20Add syntax specification to .proto files (issue #167)Petteri Aimonen1-0/+2
Eliminates a warning on protoc 3.0.
2015-03-07Fix oneof submessage initialization bug.Petteri Aimonen1-2/+6
Update issue 149 Status: FixedInGit
2015-01-27Fix generator bug when oneof is first field in a message.Petteri Aimonen2-37/+104
Added test case for the same. Update issue 142 Status: FixedInGit
2015-01-04Actually make the protoc version check workPetteri Aimonen1-2/+8
2015-01-04Only run oneof test when protoc >= 2.6 is availablePetteri Aimonen1-15/+20
2015-01-04Implement support for oneofs (C unions).Petteri Aimonen4-0/+176
Basic test included, should probably add an oneof to the AllTypes test also. Update issue 131 Status: Started