mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-29 15:42:20 +03:00
32 broken
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
class UptimeInterval {
|
||||
public:
|
||||
UptimeInterval(unsigned long interval, boolean postpone = true) : _interval{interval} {
|
||||
UptimeInterval(unsigned long interval, boolean postpone = true) : _next{0}, _interval{interval} {
|
||||
reset(postpone);
|
||||
}
|
||||
|
||||
@@ -28,5 +28,5 @@ class UptimeInterval {
|
||||
static unsigned long _uptime_seconds;
|
||||
|
||||
private:
|
||||
unsigned long _interval, _next;
|
||||
unsigned long _next, _interval;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user