Commit 653eea58 authored by Max Kellermann's avatar Max Kellermann

event/SocketEvent: remove unnecessary initializer

parent 5a4055fb
...@@ -56,7 +56,7 @@ class SocketEvent { ...@@ -56,7 +56,7 @@ class SocketEvent {
using Callback = BoundMethod<void(unsigned events) noexcept>; using Callback = BoundMethod<void(unsigned events) noexcept>;
const Callback callback; const Callback callback;
SocketDescriptor fd = SocketDescriptor::Undefined(); SocketDescriptor fd;
/** /**
* A bit mask of events that is currently registered in the * A bit mask of events that is currently registered in the
......
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