Make linter happy

Fixup for ba6b1b4353.
This commit is contained in:
Julian Lettner 2020-06-03 16:59:59 -07:00
parent 21a7b8a77d
commit eb9ca9da3e
1 changed files with 3 additions and 3 deletions

View File

@ -840,9 +840,9 @@ bool DyldNeedsEnvVariable() {
if (!&dyldVersionNumber) return true;
// If running on OS X 10.11+ or iOS 9.0+, dyld will interpose even if
// DYLD_INSERT_LIBRARIES is not set. However, checking OS version via
// GetMacosAlignedVersion() doesn't work for the simulator. Let's instead check
// `dyldVersionNumber`, which is exported by dyld, against a known version
// number from the first OS release where this appeared.
// GetMacosAlignedVersion() doesn't work for the simulator. Let's instead
// check `dyldVersionNumber`, which is exported by dyld, against a known
// version number from the first OS release where this appeared.
return dyldVersionNumber < kMinDyldVersionWithAutoInterposition;
}