summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2017-07-17 21:09:34 +0000
committerKamil Rytarowski <n54@gmx.com>2017-07-17 21:09:34 +0000
commitfbc6b650e7abdb769c4ffae0c37c1681b67366b2 (patch)
treefa452aaeeb9946100e24ca3c906bb65d22b7e1c6
parent0d60e8eeb8c0719a8f7ba982de106a520837ffb4 (diff)
downloadcompiler-rt-fbc6b650e7abdb769c4ffae0c37c1681b67366b2.tar.gz
Add missing && to fix syntax.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@308221 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/sanitizer_common/sanitizer_platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sanitizer_common/sanitizer_platform.h b/lib/sanitizer_common/sanitizer_platform.h
index 1df5fa34f..396f7c934 100644
--- a/lib/sanitizer_common/sanitizer_platform.h
+++ b/lib/sanitizer_common/sanitizer_platform.h
@@ -13,7 +13,7 @@
#ifndef SANITIZER_PLATFORM_H
#define SANITIZER_PLATFORM_H
-#if !defined(__linux__) && !defined(__FreeBSD__) && !defined(__NetBSD__) \
+#if !defined(__linux__) && !defined(__FreeBSD__) && !defined(__NetBSD__) && \
!defined(__APPLE__) && !defined(_WIN32)
# error "This operating system is not supported"
#endif