diff options
| author | 2026-03-26 22:24:16 +0000 | |
|---|---|---|
| committer | 2026-03-26 22:24:16 +0000 | |
| commit | cd2d667ca7d3d31dbcf1f3bf0717b744b11ec776 (patch) | |
| tree | 2d510e98b89d9fb7a74b7ed44dede89ef5d3b50e /include/timer.h | |
| parent | Merge branch 'insp4' into master. (diff) | |
Switch typedefs to using statements.
Diffstat (limited to 'include/timer.h')
| -rw-r--r-- | include/timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/timer.h b/include/timer.h index 2b8e91eb8..ae9f5b272 100644 --- a/include/timer.h +++ b/include/timer.h @@ -120,7 +120,7 @@ public: */ class CoreExport TimerManager final { - typedef std::multimap<time_t, Timer*> TimerMap; + using TimerMap = std::multimap<time_t, Timer*>; /** A list of all pending timers */ |
