Commit ec05056e authored by Max Kellermann's avatar Max Kellermann

zeroconf/avahi/Poll: forbid copying

parent c0b9339d
......@@ -30,6 +30,9 @@ class MyAvahiPoll final : public AvahiPoll {
public:
MyAvahiPoll(EventLoop &_loop);
MyAvahiPoll(const MyAvahiPoll &) = delete;
MyAvahiPoll &operator=(const MyAvahiPoll &) = delete;
private:
static AvahiWatch *WatchNew(const AvahiPoll *api, int fd,
AvahiWatchEvent event,
......
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