Skip to content

Commit

Permalink
fix: type visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ethe committed Jul 22, 2024
1 parent ba86da8 commit c26511c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/oracle/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::serdes::{Decode, Encode};

#[repr(transparent)]
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy)]
pub(crate) struct Timestamp(u32);
pub struct Timestamp(u32);

pub(crate) const EPOCH: Timestamp = Timestamp(0);

Expand Down
2 changes: 1 addition & 1 deletion src/version/cleaner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use flume::{Receiver, Sender};

use crate::{fs::FileId, oracle::Timestamp, DbOption};

pub(crate) enum CleanTag {
pub enum CleanTag {
Add { ts: Timestamp, gens: Vec<FileId> },
Clean { ts: Timestamp },
}
Expand Down

0 comments on commit c26511c

Please sign in to comment.