aboutsummaryrefslogtreecommitdiffstats
path: root/src/drivers/Watchdog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/Watchdog.h')
-rw-r--r--src/drivers/Watchdog.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/drivers/Watchdog.h b/src/drivers/Watchdog.h
index 22aa9df6..65a505cb 100644
--- a/src/drivers/Watchdog.h
+++ b/src/drivers/Watchdog.h
@@ -20,18 +20,5 @@ namespace Pinetime {
ResetReasons resetReason;
ResetReasons ActualResetReason() const;
};
-
- class WatchdogView {
- public:
- WatchdogView(const Watchdog& watchdog) : watchdog {watchdog} {
- }
-
- Watchdog::ResetReasons ResetReason() const {
- return watchdog.ResetReason();
- }
-
- private:
- const Watchdog& watchdog;
- };
}
}