diff options
author | Sean Gillespie <segilles@microsoft.com> | 2017-05-17 15:23:04 -0700 |
---|---|---|
committer | Sean Gillespie <segilles@microsoft.com> | 2017-06-01 10:19:59 -0700 |
commit | 5529df988f80e7fe67ec46f9f6cbd169fdf7edd5 (patch) | |
tree | afc0512d73dbd83d8c760a2cc97a3a6abd342601 /src/gc | |
parent | 1a183684b1ecf63ece8a2fd80173f083c0deea52 (diff) | |
download | coreclr-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')
-rw-r--r-- | src/gc/unix/gcenv.unix.cpp | 4 |
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 |