diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-04-14 09:26:42 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-04-14 09:26:42 +0300 |
commit | 9939910833a9289b5913eff29f951195e7bc61c6 (patch) | |
tree | 3455554408cbfec6503f92935732201571c7311f /tests/callbacks.proto | |
parent | 6a022985845a0a50b32b7c1fb22f9aee1f675825 (diff) |
Fix bug with empty strings in repeated string callbacks.
Fix suggested by Henrik Carlgren. Added also unit test for the bug.
Update issue 73
Status: FixedInGit
Diffstat (limited to 'tests/callbacks.proto')
-rw-r--r-- | tests/callbacks.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/callbacks.proto b/tests/callbacks.proto index 8beeaabf..ccd1edd8 100644 --- a/tests/callbacks.proto +++ b/tests/callbacks.proto @@ -11,5 +11,6 @@ message TestMessage { repeated fixed32 fixed32value = 3; repeated fixed64 fixed64value = 4; optional SubMessage submsg = 5; + repeated string repeatedstring = 6; } |