Skip to content

Commit

Permalink
Fix windows debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
Yan Churkin committed Jun 11, 2024
1 parent 61c2b8f commit 8b9899d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ast/ClockResolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ bool ClockingEvent::operator==(const ClockingEvent& ce) const {
return false;

// Check simple single clocked clocking events
if (unsigned long sz = events.size(); sz != ce.events.size())
if (size_t sz = events.size(); sz != ce.events.size())
return false;
else if (sz == 1)
return events[0] == ce.events[0];
Expand Down

0 comments on commit 8b9899d

Please sign in to comment.