Skip to content

Commit

Permalink
Fix System.Reflection.Metadata.MetadataUpdater.IsSupported (dotnet#55874
Browse files Browse the repository at this point in the history
  • Loading branch information
mikem8361 authored Jul 17, 2021
1 parent 57e7ae0 commit 6000184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/vm/assemblynative.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,7 @@ BOOL QCALLTYPE AssemblyNative::IsApplyUpdateSupported()
BEGIN_QCALL;

#ifdef EnC_SUPPORTED
BOOL result = CORDebuggerAttached() || g_pConfig->ForceEnc() || g_pConfig->DebugAssembliesModifiable();
result = CORDebuggerAttached() || g_pConfig->ForceEnc() || g_pConfig->DebugAssembliesModifiable();
#endif

END_QCALL;
Expand Down

0 comments on commit 6000184

Please sign in to comment.