summaryrefslogtreecommitdiff
path: root/src/gc/unix
diff options
context:
space:
mode:
authorSean Gillespie <segilles@microsoft.com>2017-05-17 15:23:04 -0700
committerSean Gillespie <segilles@microsoft.com>2017-06-01 10:19:59 -0700
commit5529df988f80e7fe67ec46f9f6cbd169fdf7edd5 (patch)
treeafc0512d73dbd83d8c760a2cc97a3a6abd342601 /src/gc/unix
parent1a183684b1ecf63ece8a2fd80173f083c0deea52 (diff)
downloadcoreclr-5529df988f80e7fe67ec46f9f6cbd169fdf7edd5.tar.gz
coreclr-5529df988f80e7fe67ec46f9f6cbd169fdf7edd5.tar.bz2
coreclr-5529df988f80e7fe67ec46f9f6cbd169fdf7edd5.zip
Fix a build break in feature branch caused by obsolete error (#11335)
Diffstat (limited to 'src/gc/unix')
-rw-r--r--src/gc/unix/gcenv.unix.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gc/unix/gcenv.unix.cpp b/src/gc/unix/gcenv.unix.cpp
index cebc515345..71c3caee6a 100644
--- a/src/gc/unix/gcenv.unix.cpp
+++ b/src/gc/unix/gcenv.unix.cpp
@@ -32,10 +32,6 @@ static_assert(sizeof(uint64_t) == 8, "unsigned long isn't 8 bytes");
#include "gcenv.base.h"
#include "gcenv.os.h"
-#ifndef BUILD_AS_STANDALONE
- #error "A GC-private implementation of GCToOSInterface should only be used with BUILD_AS_STANDALONE"
-#endif // BUILD_AS_STANDALONE
-
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#else