Skip to content

Commit

Permalink
fix feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
shaopeng-gh committed Feb 27, 2024
1 parent f2d0f3a commit 2ba0ab4
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,9 @@ public IEnumerable<IOption> GetOptions()
}

internal static bool IsLikelyUwpDummyObj(Language language, string library, string name) =>
language == Language.MASM && library?.Equals(name) == true && library == @"c:\dummy.obj";
language == Language.MASM &&
library != null &&
library.Equals(name, StringComparison.Ordinal) &&
library.Equals(@"c:\dummy.obj", StringComparison.Ordinal);
}
}

0 comments on commit 2ba0ab4

Please sign in to comment.