mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-21 04:03:11 +00:00
Remove unneeded Box::new
Co-Authored-By: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
parent
738d5a7ec2
commit
11caebe6ce
@ -372,7 +372,7 @@ fn find_cargo_toml(path: &Path) -> Result<PathBuf> {
|
||||
}
|
||||
curr = path.parent();
|
||||
}
|
||||
Err(Box::new(CargoTomlNotFoundError(path.to_path_buf())))
|
||||
Err(CargoTomlNotFoundError(path.to_path_buf()))?
|
||||
}
|
||||
|
||||
pub fn get_rustc_cfg_options() -> CfgOptions {
|
||||
|
Loading…
Reference in New Issue
Block a user