Skip to content

Commit

Permalink
suggestion from code review make m_IsCollectible a const BYTE
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdageek committed Aug 15, 2024
1 parent 7a98693 commit b8f13d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/vm/loaderallocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ class LoaderAllocator
bool m_fTerminated;
bool m_fMarked;
int m_nGCCount;
BYTE m_IsCollectible;
const BYTE m_IsCollectible;

// Pre-allocated blocks of heap for collectible assemblies. Will be set to NULL as soon as it is
// used. See code in GetVSDHeapInitialBlock and GetCodeHeapInitialBlock
Expand Down

0 comments on commit b8f13d6

Please sign in to comment.