Commit ec8cba36 authored by Max Kellermann's avatar Max Kellermann

lib/upnp/WorkQueue: disallow copying

parent f4c248f4
......@@ -77,6 +77,9 @@ public:
setTerminateAndWait();
}
WorkQueue(const WorkQueue &) = delete;
WorkQueue &operator=(const WorkQueue &) = delete;
/** Start the worker threads.
*
* @param nworkers number of threads copies to start.
......
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