Use .nth(x) instead of .skip(x).next() on iterators.

This commit is contained in:
Matthias Krüger 2020-03-02 19:36:12 +01:00
parent 5abaeb3d67
commit c287d86d2c
2 changed files with 3 additions and 7 deletions

View file

@ -186,7 +186,7 @@ pub fn get_linker(sess: &Session, linker: &Path, flavor: LinkerFlavor) -> (PathB
if flavor == LinkerFlavor::Msvc && t.target_vendor == "uwp" {
if let Some(ref tool) = msvc_tool {
let original_path = tool.path();
if let Some(ref root_lib_path) = original_path.ancestors().skip(4).next() {
if let Some(ref root_lib_path) = original_path.ancestors().nth(4) {
let arch = match t.arch.as_str() {
"x86_64" => Some("x64".to_string()),
"x86" => Some("x86".to_string()),