diff options
author | Jose <jose@zeroc.com> | 2018-09-24 13:36:02 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-09-24 13:36:02 +0200 |
commit | d23ec05381f48e8df0fe2d169f8efbb7ca1290e5 (patch) | |
tree | 1cc6932c821f4d2abb63874cb3de0cdcc1596e43 /cpp/src/Slice | |
parent | Turn off documentation warnings with clang (diff) | |
download | ice-d23ec05381f48e8df0fe2d169f8efbb7ca1290e5.tar.bz2 ice-d23ec05381f48e8df0fe2d169f8efbb7ca1290e5.tar.xz ice-d23ec05381f48e8df0fe2d169f8efbb7ca1290e5.zip |
Fix bogus generated code for Value seq
Close #212
Diffstat (limited to 'cpp/src/Slice')
-rw-r--r-- | cpp/src/Slice/Parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/src/Slice/Parser.cpp b/cpp/src/Slice/Parser.cpp index cdffbbea280..19ed36efd5f 100644 --- a/cpp/src/Slice/Parser.cpp +++ b/cpp/src/Slice/Parser.cpp @@ -481,6 +481,7 @@ Slice::Builtin::minWireSize() const 1, // KindString: at least one byte for an empty string. 1, // KindObject: at least one byte (to marshal an index instead of an instance). 2, // KindObjectProxy: at least an empty identity for a nil proxy, that is, 2 bytes. + 0, // KindLocalObject: unused 1 // KindValue: at least one byte (to marshal an index instead of an instance). }; |