From c006a82f4ca1ebd3da3f94d9e69a2336e4fb0f4c Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Mon, 24 Feb 2025 19:04:36 -0500 Subject: Remove `is_floating_point` from `Type` impl Debug It is unnecessary --- rust/src/types.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'rust/src') 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()) -- cgit v1.3.1