From b1246d8bfc27368028c3f9f93d022e373118fcaa Mon Sep 17 00:00:00 2001 From: Ryan Snyder Date: Thu, 20 Nov 2025 21:40:23 -0500 Subject: types: fragment type API support (C++, Python) --- plugins/warp/src/convert/types.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'plugins/warp/src') diff --git a/plugins/warp/src/convert/types.rs b/plugins/warp/src/convert/types.rs index 8421eb5e..abfa3bc9 100644 --- a/plugins/warp/src/convert/types.rs +++ b/plugins/warp/src/convert/types.rs @@ -244,6 +244,10 @@ pub fn from_bn_type_internal( }; TypeClass::Character(char_class) } + BNTypeClass::FragmentTypeClass => { + // XXX: possibly unrepresentable? + TypeClass::Void + } }; let name = raw_ty.registered_name().map(|n| n.name().to_string()); -- cgit v1.3.1