diff options
author | Barnabás Pőcze <pobrn@protonmail.com> | 2025-01-28 14:08:14 +0100 |
---|---|---|
committer | Barnabás Pőcze <pobrn@protonmail.com> | 2025-02-27 17:29:28 +0100 |
commit | 3939c316f0b84ff618ddd2cc575002906521a579 (patch) | |
tree | ae3ca36a90328a5bf8d422432466f59b539c33ca /src/apps | |
parent | 234eb60546aa52d6bcae3f7a68c90d2e84b0b5f8 (diff) |
apps: common: event_loop: Remove unused type alias
The type alias `duration` is not used anywhere, so remove it.
Signed-off-by: Barnabás Pőcze <pobrn@protonmail.com>
Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Diffstat (limited to 'src/apps')
-rw-r--r-- | src/apps/common/event_loop.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/apps/common/event_loop.h b/src/apps/common/event_loop.h index 53b2c37d..d8b6df2f 100644 --- a/src/apps/common/event_loop.h +++ b/src/apps/common/event_loop.h @@ -41,7 +41,6 @@ public: void addFdEvent(int fd, EventType type, std::function<void()> &&handler); - using duration = std::chrono::steady_clock::duration; void addTimerEvent(const std::chrono::microseconds period, std::function<void()> &&handler); |