Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make gcc happy
  • Loading branch information
VSadov committed Mar 23, 2023
commit 0f71d10b2cc07095a317e3e5b2cc21439220416c
2 changes: 1 addition & 1 deletion src/coreclr/vm/array.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ MethodTable* Module::CreateArrayMethodTable(TypeHandle elemTypeHnd, CorElementTy

// Set up GC information
if (CorTypeInfo::IsObjRef(elemType) ||
(elemType == ELEMENT_TYPE_VALUETYPE) && pElemMT->IsAllGCPointers())
((elemType == ELEMENT_TYPE_VALUETYPE) && pElemMT->IsAllGCPointers()))
{
pMT->SetContainsPointers();

Expand Down