Skip to content

Commit

Permalink
Expose usize on term ID
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook authored Aug 23, 2023
1 parent e9bd5f9 commit 683fa59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/termdag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::{
};

#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
pub struct TermId(usize);
pub struct TermId(pub usize);

/// Like [`Expr`]s but with sharing and deduplication.
///
Expand Down

0 comments on commit 683fa59

Please sign in to comment.