Skip to content

Commit

Permalink
Limit visibility of internal type
Browse files Browse the repository at this point in the history
  • Loading branch information
bazhenov committed Jul 2, 2024
1 parent 4ea09e2 commit 6b084ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tango-bench/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use std::{
};

pub type Result<T> = anyhow::Result<T>;
pub type StdResult<T, E> = std::result::Result<T, E>;
pub(crate) type StdResult<T, E> = std::result::Result<T, E>;

#[derive(Parser, Debug)]
enum BenchmarkMode {
Expand Down

0 comments on commit 6b084ea

Please sign in to comment.