summaryrefslogtreecommitdiff
path: root/src/pal/src/exception/seh-unwind.cpp
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-02-20 16:16:48 +0100
committerJan Vorlicek <janvorli@microsoft.com>2015-02-20 16:16:48 +0100
commit0d4a78194011da91c2c180ac245a6a2a3b7c77af (patch)
tree0337ffa3aaae9a84ab39c0559c48fcc5efbc6bcf /src/pal/src/exception/seh-unwind.cpp
parent71697cc71ffbae76a3ee74330374e3a5449f8a12 (diff)
downloadcoreclr-0d4a78194011da91c2c180ac245a6a2a3b7c77af.tar.gz
coreclr-0d4a78194011da91c2c180ac245a6a2a3b7c77af.tar.bz2
coreclr-0d4a78194011da91c2c180ac245a6a2a3b7c77af.zip
Add missing dummy PAL_CheckVirtualUnwind in Release
With the previous commit, I haven't noticed that the dummy PAL_CheckVirtualUnwind() is now missing in the release build. Adding it back.
Diffstat (limited to 'src/pal/src/exception/seh-unwind.cpp')
-rw-r--r--src/pal/src/exception/seh-unwind.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pal/src/exception/seh-unwind.cpp b/src/pal/src/exception/seh-unwind.cpp
index 8082681efb..839df39839 100644
--- a/src/pal/src/exception/seh-unwind.cpp
+++ b/src/pal/src/exception/seh-unwind.cpp
@@ -302,6 +302,10 @@ extern "C" void PAL_CheckVirtualUnwind()
}
}
}
+#else // _DEBUG
+
+#define PAL_CheckVirtualUnwind()
+
#endif // _DEBUG
//----------------------------------------------------------------------