lib/upnp/WorkQueue: disallow copying
This commit is contained in:
parent
f4c248f406
commit
ec8cba369c
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue