From 8b9899d25f8ae3fb20d27cc950f29845cdc1de5f Mon Sep 17 00:00:00 2001 From: Yan Churkin Date: Wed, 12 Jun 2024 01:17:05 +0300 Subject: [PATCH] Fix windows debug build --- source/ast/ClockResolution.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ast/ClockResolution.cpp b/source/ast/ClockResolution.cpp index f216fdf38..3e69f698d 100644 --- a/source/ast/ClockResolution.cpp +++ b/source/ast/ClockResolution.cpp @@ -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];