Index: webrtc/modules/utility/source/helpers_ios.mm |
diff --git a/webrtc/modules/utility/source/helpers_ios.mm b/webrtc/modules/utility/source/helpers_ios.mm |
index 2afcb2953a1733e93d669aa8b15f815e17d48ac6..5e827a88d14d89ff900a0f946472841c195f368c 100644 |
--- a/webrtc/modules/utility/source/helpers_ios.mm |
+++ b/webrtc/modules/utility/source/helpers_ios.mm |
@@ -178,7 +178,8 @@ int GetProcessorCount() { |
return [NSProcessInfo processInfo].processorCount; |
} |
-#if defined(__IPHONE_9_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_9_0 |
+#if defined(__IPHONE_9_0) && defined(__IPHONE_OS_VERSION_MAX_ALLOWED) \ |
+ && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_9_0 |
bool GetLowPowerModeEnabled() { |
if (isOperatingSystemAtLeastVersion(9.0)) { |
// lowPoweredModeEnabled is only available on iOS9+. |