diff options
author | danmosemsft <danmose@microsoft.com> | 2017-02-10 17:12:53 -0800 |
---|---|---|
committer | danmosemsft <danmose@microsoft.com> | 2017-02-10 21:36:06 -0800 |
commit | 54891e0650e69f08832f75a40dc102efc6115d38 (patch) | |
tree | 0e032a0b337767801f696cbaeacded267c694f32 /src/binder | |
parent | 396f7d43b3c0f3ca7034a6d1d9cd7d6914778a1e (diff) | |
download | coreclr-54891e0650e69f08832f75a40dc102efc6115d38.tar.gz coreclr-54891e0650e69f08832f75a40dc102efc6115d38.tar.bz2 coreclr-54891e0650e69f08832f75a40dc102efc6115d38.zip |
Remove always defined FEATURE_CORECLR
Diffstat (limited to 'src/binder')
-rw-r--r-- | src/binder/coreclrbindercommon.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/binder/coreclrbindercommon.cpp b/src/binder/coreclrbindercommon.cpp index 86540fcfd5..e788c15488 100644 --- a/src/binder/coreclrbindercommon.cpp +++ b/src/binder/coreclrbindercommon.cpp @@ -107,12 +107,8 @@ HRESULT CCoreCLRBinderHelper::BindToSystem(ICLRPrivAssembly **ppSystemAssembly, EX_TRY { ReleaseHolder<BINDER_SPACE::Assembly> pAsm; -#ifdef FEATURE_CORECLR StackSString systemPath(SystemDomain::System()->SystemDirectory()); hr = AssemblyBinder::BindToSystem(systemPath, &pAsm, fBindToNativeImage); -#else - AssemblySpec::BindToSystem(&pAsm); -#endif if(SUCCEEDED(hr)) { _ASSERTE(pAsm != NULL); |