diff options
| author | Mason Reed <mason@vector35.com> | 2025-06-28 18:39:09 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-07-02 01:56:54 -0400 |
| commit | 6662b774b37840380c2e2274a4ca01680b72ba90 (patch) | |
| tree | aa4a2b03a8cef2051cb1cf7ce72e104df5502f59 /rust/src/low_level_il/function.rs | |
| parent | b6e1dd2ef1400f8a9cdffd72f26262a0de64cbc8 (diff) | |
[Rust] Misc things for WARP
- Make LowLevelILFunction::from_raw public"
- Add a helper to get lifted il from flow graph
Diffstat (limited to 'rust/src/low_level_il/function.rs')
| -rw-r--r-- | rust/src/low_level_il/function.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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) } |
