Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rust/src/variable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -590,9 +590,9 @@ impl From<ValueRange<i64>> for BNValueRange {
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct LookupTableEntry {
/// The set of integers that correspond with [`Self::to`].
from: HashSet<i64>,
pub from: HashSet<i64>,
/// The associated "mapped" value.
to: i64,
pub to: i64,
}

impl LookupTableEntry {
Expand Down
Loading