summarylogtreecommitdiffstats
path: root/fix-dtor-call.patch
diff options
context:
space:
mode:
Diffstat (limited to 'fix-dtor-call.patch')
-rw-r--r--fix-dtor-call.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/fix-dtor-call.patch b/fix-dtor-call.patch
new file mode 100644
index 000000000000..db3d33794d58
--- /dev/null
+++ b/fix-dtor-call.patch
@@ -0,0 +1,25 @@
+From c2ef0939ffa56dca0c923d7f484b69e30de205d2 Mon Sep 17 00:00:00 2001
+From: "John Chen (CLR)" <jochen@microsoft.com>
+Date: Wed, 21 Sep 2016 10:58:39 -0700
+Subject: [PATCH] Fix OS X build break with AppleClang 8.0.0
+
+Fixes issue #7275
+---
+ src/pal/src/include/pal/sharedmemory.h | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/src/pal/src/include/pal/sharedmemory.h b/src/pal/src/include/pal/sharedmemory.h
+index 475cd70..45cc4b2 100644
+--- a/src/pal/src/include/pal/sharedmemory.h
++++ b/src/pal/src/include/pal/sharedmemory.h
+@@ -182,6 +182,10 @@ class SharedMemoryProcessDataBase
+ virtual void Close(bool isAbruptShutdown, bool releaseSharedData)
+ {
+ }
++
++ virtual ~SharedMemoryProcessDataBase()
++ {
++ }
+ };
+
+ class SharedMemoryProcessDataHeader