pub crate

This commit is contained in:
Ayaz Hafiz 2023-07-04 16:57:30 -05:00
parent 74d0f8d2e5
commit 7c8e7bbea3
No known key found for this signature in database
GPG Key ID: 0E2A37416A25EF58
2 changed files with 2 additions and 5 deletions

View File

@ -5951,7 +5951,7 @@ pub enum CCReturn {
}
#[derive(Debug, Clone, Copy)]
pub struct FunctionSpec<'ctx> {
pub(crate) struct FunctionSpec<'ctx> {
/// The function type
pub typ: FunctionType<'ctx>,
call_conv: u32,

View File

@ -1,7 +1,4 @@
use inkwell::{
types::{BasicTypeEnum, StructType},
AddressSpace,
};
use inkwell::{types::StructType, AddressSpace};
use super::build::Env;