Commit ce93e589 authored by Max Kellermann's avatar Max Kellermann

event/TimerEvent: use `using` instead of `typedef`

parent 263b0ffd
...@@ -43,7 +43,7 @@ class TimerEvent final ...@@ -43,7 +43,7 @@ class TimerEvent final
EventLoop &loop; EventLoop &loop;
typedef BoundMethod<void() noexcept> Callback; using Callback = BoundMethod<void() noexcept>;
const Callback callback; const Callback callback;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment