[#73220] remove unnecessary assert

This commit is contained in:
Mateusz Gancarz 2025-02-27 14:51:42 +01:00
parent 5bd9aabfcc
commit 074349b682
1 changed files with 0 additions and 1 deletions

View File

@ -40,7 +40,6 @@ public:
VL_ATTR_ALWINLINE
void aggregateVal(uint64_t dt, bool newVal) {
m_transitions += newVal != m_lastVal ? 1 : 0;
assert(dt < 10000);
m_highTime += m_lastVal ? dt : 0;
m_lastVal = newVal;
}