diff options
Diffstat (limited to 'common/object/src/value.rs')
| -rw-r--r-- | common/object/src/value.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/object/src/value.rs b/common/object/src/value.rs index cf6dad2..ac4cc9d 100644 --- a/common/object/src/value.rs +++ b/common/object/src/value.rs @@ -139,6 +139,7 @@ impl ValueStore for Object<'_> { true } fn store_aligned(&self, buf: &mut Vec<u32>) { + buf.push(self.tags.len() as u32); buf.extend(self.tags); buf.extend(self.offsets); buf.extend(self.values); |