LLVM unit tests: Context need not be pub

This commit is contained in:
Joëlle van Essen 2025-02-18 13:00:56 +01:00
parent 626763b4e2
commit 195a05b121
No known key found for this signature in database
GPG key ID: 28D3B5CDD4B43882

View file

@ -45,7 +45,7 @@ const SHARED_ADDRESS_SPACE: u32 = 3;
const CONSTANT_ADDRESS_SPACE: u32 = 4;
const PRIVATE_ADDRESS_SPACE: u32 = 5;
pub struct Context(LLVMContextRef);
struct Context(LLVMContextRef);
impl Context {
fn new() -> Self {