diff options
| author | Mason Reed <mason@vector35.com> | 2025-02-24 19:04:36 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-02-24 20:11:57 -0500 |
| commit | c006a82f4ca1ebd3da3f94d9e69a2336e4fb0f4c (patch) | |
| tree | 086958c5fd19a04efba5dea3cb919d542c7e5890 /rust/src | |
| parent | fb8eb1501b7f4b8eaefcb26131230ba42083c153 (diff) | |
Remove `is_floating_point` from `Type` impl Debug
It is unnecessary
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/types.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rust/src/types.rs b/rust/src/types.rs index 534b7708..35db62ff 100644 --- a/rust/src/types.rs +++ b/rust/src/types.rs @@ -965,7 +965,6 @@ impl Debug for Type { .field("is_signed", &self.is_signed()) .field("is_const", &self.is_const()) .field("is_volatile", &self.is_volatile()) - .field("is_floating_point", &self.is_floating_point()) .field("child_type", &self.child_type()) .field("calling_convention", &self.calling_convention()) .field("parameters", &self.parameters()) |
