fix: remove clippy warnings

This commit is contained in:
2025-04-09 09:26:01 +03:00
parent c1e568aa3f
commit 1683728031
4 changed files with 6 additions and 6 deletions

View File

@@ -54,10 +54,12 @@ pub fn run_binary_with_args(path: &Path, params: &BenchParams) -> anyhow::Result
Ok(())
}
pub fn create_deep_directory(base: &Path, depth: usize) -> anyhow::Result<()> {
#[allow(dead_code)]
pub fn create_deep_directory(_base: &Path, _depth: usize) -> anyhow::Result<()> {
todo!()
}
pub fn create_wide_directory(base: &Path, width: usize) -> anyhow::Result<()> {
#[allow(dead_code)]
pub fn create_wide_directory(_base: &Path, _width: usize) -> anyhow::Result<()> {
todo!()
}