Index: runtime/bin/file_system_watcher_macos.cc |
diff --git a/runtime/bin/file_system_watcher_macos.cc b/runtime/bin/file_system_watcher_macos.cc |
index fbecffa5cfb9a1b5886a4d5360c4ca7837c3846d..5c0d43077a0dd82263f1e5bcfe6b24b9e79725e4 100644 |
--- a/runtime/bin/file_system_watcher_macos.cc |
+++ b/runtime/bin/file_system_watcher_macos.cc |
@@ -7,7 +7,7 @@ |
#include "bin/file_system_watcher.h" |
-#if !defined(TARGET_OS_IOS) |
+#if !TARGET_OS_IOS |
#include <errno.h> // NOLINT |
#include <fcntl.h> // NOLINT |
@@ -394,7 +394,7 @@ Dart_Handle FileSystemWatcher::ReadEvents(intptr_t id, intptr_t path_id) { |
} // namespace bin |
} // namespace dart |
-#else // !defined(TARGET_OS_IOS) |
+#else // !TARGET_OS_IOS |
namespace dart { |
namespace bin { |
@@ -432,6 +432,6 @@ intptr_t FileSystemWatcher::WatchPath(intptr_t id, |
} // namespace bin |
} // namespace dart |
-#endif // !defined(TARGET_OS_IOS) |
+#endif // !TARGET_OS_IOS |
#endif // defined(TARGET_OS_MACOS) |