summaryrefslogtreecommitdiff
path: root/zen/error_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/error_log.h')
-rw-r--r--zen/error_log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/error_log.h b/zen/error_log.h
index 8604f127..6d9f80ae 100644
--- a/zen/error_log.h
+++ b/zen/error_log.h
@@ -90,7 +90,7 @@ ErrorLog::Stats ErrorLog::getStats() const
++count.error;
break;
}
- assert(static_cast<int>(entries_.size()) == count.info + count.warning + count.error);
+ assert(std::ssize(entries_) == count.info + count.warning + count.error);
return count;
}
bgstack15