diff options
| author | Mason Reed <mason@vector35.com> | 2025-01-31 13:11:41 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-07-02 01:56:53 -0400 |
| commit | f8aaf21991c2a5adcdca56f3638f321b2ccbe809 (patch) | |
| tree | 12f9b3c164e6d71cd26fc97c11f160fc0363ed6b /rust/src/basic_block.rs | |
| parent | 4889870837219897480070354656984723887637 (diff) | |
[Rust] Make some core handles public
This is a requirement if we want rust plugins to expose sane FFIs
Diffstat (limited to 'rust/src/basic_block.rs')
| -rw-r--r-- | rust/src/basic_block.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/basic_block.rs b/rust/src/basic_block.rs index 67b85987..3e21094a 100644 --- a/rust/src/basic_block.rs +++ b/rust/src/basic_block.rs @@ -112,7 +112,7 @@ pub struct BasicBlock<C: BlockContext> { } impl<C: BlockContext> BasicBlock<C> { - pub(crate) unsafe fn from_raw(handle: *mut BNBasicBlock, context: C) -> Self { + pub unsafe fn from_raw(handle: *mut BNBasicBlock, context: C) -> Self { Self { handle, context } } |
