summaryrefslogtreecommitdiff
path: root/src/vm/dllimportcallback.h
diff options
context:
space:
mode:
authorSaeHie Park <saehie.park@gmail.com>2016-11-29 08:10:14 +0900
committerJan Vorlicek <janvorli@microsoft.com>2016-11-29 00:10:14 +0100
commit4fb0c3e3cff61c09a5ec745b354e3219607295a3 (patch)
tree4a5118354acb9f3457476de473ef6c53dee2944c /src/vm/dllimportcallback.h
parente5d9c9f4dea33b66339f748d837e99a3d645ff79 (diff)
downloadcoreclr-4fb0c3e3cff61c09a5ec745b354e3219607295a3.tar.gz
coreclr-4fb0c3e3cff61c09a5ec745b354e3219607295a3.tar.bz2
coreclr-4fb0c3e3cff61c09a5ec745b354e3219607295a3.zip
[x86/Linux] Fix constructor missing in UnmanagedToManagedFrame (#8275)
Fix compile error for x86/Linux - full error string: constructor for 'UMThkCallFrame' must explicitly initialize the base class 'UnmanagedToManagedFrame' which does not have a default constructor - wrap UMThkCallFrame with also !FEATURE_PAL
Diffstat (limited to 'src/vm/dllimportcallback.h')
-rw-r--r--src/vm/dllimportcallback.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/dllimportcallback.h b/src/vm/dllimportcallback.h
index 6de87d77a3..059906e9e2 100644
--- a/src/vm/dllimportcallback.h
+++ b/src/vm/dllimportcallback.h
@@ -569,7 +569,7 @@ private:
AppDomain *m_pDomain;
};
-#ifdef _TARGET_X86_
+#if defined(_TARGET_X86_) && !defined(FEATURE_PAL)
//-------------------------------------------------------------------------
// One-time creation of special prestub to initialize UMEntryThunks.
//-------------------------------------------------------------------------