Skip to content

Commit

Permalink
Forgot to make new function public
Browse files Browse the repository at this point in the history
  • Loading branch information
ramon-garcia committed Feb 24, 2023
1 parent 4d2c313 commit fee602e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/checkpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl CheckpointMaker {
///
/// In order to provide a scope for the CheckpointMaker one can use scope.new_sub_scope("")
/// as Scope does not support the Clone trait at present
fn new(scope: Scope, variables: Box<[String]>) -> CheckpointMaker {
pub fn new(scope: Scope, variables: Box<[String]>) -> CheckpointMaker {
CheckpointMaker { scope, variables, save_restore_ops: None }
}

Expand Down

0 comments on commit fee602e

Please sign in to comment.