Skip to content

Commit

Permalink
remove pub for generic_value
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanvilla committed Feb 10, 2024
1 parent 94c1062 commit 3bac9dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/values/generic_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub struct GenericValue<'ctx> {
}

impl<'ctx> GenericValue<'ctx> {
pub unsafe fn new(generic_value: LLVMGenericValueRef) -> Self {
pub(crate) unsafe fn new(generic_value: LLVMGenericValueRef) -> Self {
assert!(!generic_value.is_null());

GenericValue {
Expand Down

0 comments on commit 3bac9dd

Please sign in to comment.