summaryrefslogtreecommitdiff
path: root/src/vm/pefile.h
diff options
context:
space:
mode:
authordanmosemsft <danmose@microsoft.com>2017-02-12 12:08:12 -0800
committerdanmosemsft <danmose@microsoft.com>2017-02-12 16:58:48 -0800
commit2f50fd27bfde5f2bc32c081e6a2196f92fc03992 (patch)
treee05ee9d8a633653db4da44dd19042470b56d4202 /src/vm/pefile.h
parentf2704e6d0b45d37a638ef320a908ff0e3b23f0b5 (diff)
downloadcoreclr-2f50fd27bfde5f2bc32c081e6a2196f92fc03992.tar.gz
coreclr-2f50fd27bfde5f2bc32c081e6a2196f92fc03992.tar.bz2
coreclr-2f50fd27bfde5f2bc32c081e6a2196f92fc03992.zip
Remove never defined FEATURE_APPX_BINDER
Diffstat (limited to 'src/vm/pefile.h')
-rw-r--r--src/vm/pefile.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/vm/pefile.h b/src/vm/pefile.h
index 0681b3e4a9..31b7925dc3 100644
--- a/src/vm/pefile.h
+++ b/src/vm/pefile.h
@@ -1039,11 +1039,7 @@ class PEAssembly : public PEFile
inline bool CanUseWithBindingCache()
{
STATIC_CONTRACT_WRAPPER;
-#if !defined(FEATURE_APPX_BINDER)
return (HasBindableIdentity());
-#else
- return (PEFile::CanUseWithBindingCache() && HasBindableIdentity());
-#endif // FEATURE_CORECLR
}
};