diff options
Diffstat (limited to 'common/object/src/inspect.rs')
| -rw-r--r-- | common/object/src/inspect.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/object/src/inspect.rs b/common/object/src/inspect.rs index bc217f0..cfab5c3 100644 --- a/common/object/src/inspect.rs +++ b/common/object/src/inspect.rs @@ -28,6 +28,7 @@ impl Debug for Inspector<'_, Object<'_>> { x if x == OBJECT => s.field(info.name, &self.1.get_typed::<Object>(i).unwrap()), x if x == U32 => s.field(info.name, &self.1.get_typed::<u32>(i).unwrap()), x if x == U64 => s.field(info.name, &self.1.get_typed::<u64>(i).unwrap()), + x if x == I64 => s.field(info.name, &self.1.get_typed::<i64>(i).unwrap()), _ => { nonexhaustive = true; &mut s |