Skip to content

Commit

Permalink
fix wrong bitfield generation
Browse files Browse the repository at this point in the history
  • Loading branch information
wbenny committed Jan 10, 2019
1 parent 5e582bb commit 910badd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/PDBSymbolVisitor.inl
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,10 @@ PDBSymbolVisitor<MEMBER_DEFINITION_TYPE>::VisitUdtField(
// Remember this UdtField as a last bitfield field.
//

m_PreviousBitFieldField = UdtField;
if (IsBitFieldMember)
{
m_PreviousBitFieldField = UdtField;
}
}

template <
Expand Down

0 comments on commit 910badd

Please sign in to comment.