diff options
author | Jan Vorlicek <janvorli@microsoft.com> | 2016-05-07 10:47:59 +0200 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2016-05-07 10:47:59 +0200 |
commit | 29fcfe2938e3890cd6fb302d2f8c6dabc1a09fc4 (patch) | |
tree | 6d78c357065c39e7bed9f86178b9af47944aaefd /src/vm/compile.cpp | |
parent | 0ef1fc9aa3d65d41b5b9c8cd4911a1f8cdece049 (diff) | |
download | coreclr-29fcfe2938e3890cd6fb302d2f8c6dabc1a09fc4.tar.gz coreclr-29fcfe2938e3890cd6fb302d2f8c6dabc1a09fc4.tar.bz2 coreclr-29fcfe2938e3890cd6fb302d2f8c6dabc1a09fc4.zip |
Remove FEATURE_HOSTED_BINDER definition (#4838)
The FEATURE_HOSTED_BINDER is always on so remove it from all the sources.
Diffstat (limited to 'src/vm/compile.cpp')
-rw-r--r-- | src/vm/compile.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vm/compile.cpp b/src/vm/compile.cpp index 36bba43c10..67d48863fa 100644 --- a/src/vm/compile.cpp +++ b/src/vm/compile.cpp @@ -51,11 +51,11 @@ #include "cgensys.h" #include "peimagelayout.inl" -#if defined(FEATURE_HOSTED_BINDER) && defined(FEATURE_APPX_BINDER) +#if defined(FEATURE_APPX_BINDER) #include "appxutil.h" #include "clrprivbinderappx.h" #include "clrprivtypecachewinrt.h" -#endif // defined(FEATURE_HOSTED_BINDER) && defined(FEATURE_APPX_BINDER) +#endif // defined(FEATURE_APPX_BINDER) #ifdef FEATURE_COMINTEROP #include "clrprivbinderwinrt.h" @@ -163,7 +163,7 @@ HRESULT CEECompileInfo::CreateDomain(ICorCompilationDomain **ppDomain, if (pEmitter) pCompilationDomain->SetDependencyEmitter(pEmitter); -#if defined(FEATURE_HOSTED_BINDER) && defined(FEATURE_APPX_BINDER) +#if defined(FEATURE_APPX_BINDER) if (AppX::IsAppXProcess()) { HRESULT hr = S_OK; @@ -173,7 +173,7 @@ HRESULT CEECompileInfo::CreateDomain(ICorCompilationDomain **ppDomain, IfFailThrow(pBinder->QueryInterface(IID_ICLRPrivBinder, &pBinderInterface)); pCompilationDomain->SetLoadContextHostBinder(pBinderInterface); } -#endif // defined(FEATURE_HOSTED_BINDER) && defined(FEATURE_APPX_BINDER) +#endif // defined(FEATURE_APPX_BINDER) #ifdef DEBUGGING_SUPPORTED // Notify the debugger here, before the thread transitions into the |