Skip to content

Commit fee602e

Browse files
committed
Forgot to make new function public
1 parent 4d2c313 commit fee602e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/checkpoint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ impl CheckpointMaker {
2525
///
2626
/// In order to provide a scope for the CheckpointMaker one can use scope.new_sub_scope("")
2727
/// as Scope does not support the Clone trait at present
28-
fn new(scope: Scope, variables: Box<[String]>) -> CheckpointMaker {
28+
pub fn new(scope: Scope, variables: Box<[String]>) -> CheckpointMaker {
2929
CheckpointMaker { scope, variables, save_restore_ops: None }
3030
}
3131

0 commit comments

Comments
 (0)