tools: Remove dead code

This commit is contained in:
Léo Lam 2021-08-05 21:56:41 +02:00
parent 8bcf98bcaa
commit d1032acc1c
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 0 additions and 6 deletions

View File

@ -177,9 +177,3 @@ pub fn demangle_str(name: &str) -> Result<String> {
let options = cpp_demangle::DemangleOptions::new();
Ok(symbol.demangle(&options)?)
}
pub fn get_expected_dir_path() -> Result<PathBuf> {
let mut path = repo::get_repo_root()?;
path.push("expected");
Ok(path)
}