Skip to content

Commit

Permalink
remove CommitAlter enum used during dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegn committed Nov 28, 2024
1 parent e594681 commit 3cc7478
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions core/rs/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -892,14 +892,3 @@ pub extern "C" fn crsql_create_crr(
_ => ResultCode::NOMEM as c_int,
}
}

pub enum CommitAlter {
PossiblyDestructive,
NonDestructive,
}

impl CommitAlter {
pub fn is_destructive(&self) -> bool {
matches!(self, CommitAlter::PossiblyDestructive)
}
}

0 comments on commit 3cc7478

Please sign in to comment.