diff options
author | Muxi Yan <mxyan@google.com> | 2017-03-08 14:54:11 -0800 |
---|---|---|
committer | Muxi Yan <mxyan@google.com> | 2017-03-16 10:04:54 -0700 |
commit | f69a885f176c1bac9b15d7b270a9dc50fbf3a4f6 (patch) | |
tree | c5c315b5f02239a8a154e9b9fefde2d5263cf591 /src/objective-c | |
parent | 3f2413d15ed545f4d5902af067fbe285499e11c0 (diff) |
Add comment to encodingOverhead
Diffstat (limited to 'src/objective-c')
-rw-r--r-- | src/objective-c/tests/InteropTests.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/objective-c/tests/InteropTests.m b/src/objective-c/tests/InteropTests.m index 766fa19d85..d964f53e8e 100644 --- a/src/objective-c/tests/InteropTests.m +++ b/src/objective-c/tests/InteropTests.m @@ -90,6 +90,9 @@ return nil; } +// This number indicates how many bytes of overhead does Protocol Buffers encoding add onto the +// message. The number varies as different message.proto is used on different servers. The actual +// number for each interop server is overridden in corresponding derived test classes. - (int32_t)encodingOverhead { return 0; } |