cppcheck update

This commit is contained in:
Peter Buchegger 2023-09-23 13:50:14 +00:00
parent fbb2071045
commit 5b2b9dfdd8
4 changed files with 0 additions and 21 deletions

View file

@ -48,7 +48,6 @@ bool TaskManager::loop(System &system) {
return ret;
}
// cppcheck-suppress unusedFunction
void StatusFrame::drawStatusPage(Bitmap &bitmap) {
int y = 0;
for (Task const *const task : _tasks) {

View file

@ -13,12 +13,10 @@ uint32_t Timer::getTriggerTimeInSec() const {
return (_nextTimeout - millis()) / 1000;
}
// cppcheck-suppress unusedFunction
bool Timer::isActive() const {
return _nextTimeout != 0;
}
// cppcheck-suppress unusedFunction
void Timer::reset() {
_nextTimeout = 0;
}