summaryrefslogtreecommitdiff
path: root/src/vm/exstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/exstate.h')
-rw-r--r--src/vm/exstate.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/vm/exstate.h b/src/vm/exstate.h
index 50e71ed79b..34f6427b51 100644
--- a/src/vm/exstate.h
+++ b/src/vm/exstate.h
@@ -116,16 +116,13 @@ public:
// to start a funclet-skipping stackwalk in this time window.
TEF_InconsistentExceptionState = 0x00000001,
-#if defined(FEATURE_EXCEPTIONDISPATCHINFO)
TEF_ForeignExceptionRaise = 0x00000002,
-#endif // defined(FEATURE_EXCEPTIONDISPATCHINFO)
};
void SetThreadExceptionFlag(ThreadExceptionFlag flag);
void ResetThreadExceptionFlag(ThreadExceptionFlag flag);
BOOL HasThreadExceptionFlag(ThreadExceptionFlag flag);
-#if defined(FEATURE_EXCEPTIONDISPATCHINFO)
inline void SetRaisingForeignException()
{
LIMITED_METHOD_CONTRACT;
@@ -143,7 +140,6 @@ public:
LIMITED_METHOD_CONTRACT;
ResetThreadExceptionFlag(TEF_ForeignExceptionRaise);
}
-#endif // defined(FEATURE_EXCEPTIONDISPATCHINFO)
#if defined(_DEBUG)
void AssertStackTraceInfo(StackTraceInfo *pSTI);