From 6662b774b37840380c2e2274a4ca01680b72ba90 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sat, 28 Jun 2025 18:39:09 -0400 Subject: [Rust] Misc things for WARP - Make LowLevelILFunction::from_raw public" - Add a helper to get lifted il from flow graph --- rust/src/low_level_il/function.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src/low_level_il/function.rs') diff --git a/rust/src/low_level_il/function.rs b/rust/src/low_level_il/function.rs index 2eaf7f11..f5fcf25f 100644 --- a/rust/src/low_level_il/function.rs +++ b/rust/src/low_level_il/function.rs @@ -70,7 +70,7 @@ where } } - pub(crate) unsafe fn from_raw(handle: *mut BNLowLevelILFunction) -> Self { + pub unsafe fn from_raw(handle: *mut BNLowLevelILFunction) -> Self { Self::from_raw_with_arch(handle, None) } -- cgit v1.3.1