diff options
Diffstat (limited to '')
-rw-r--r-- | src/db/upnp/Device.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/db/upnp/Device.hxx b/src/db/upnp/Device.hxx index 78b9820f9..78be01bd5 100644 --- a/src/db/upnp/Device.hxx +++ b/src/db/upnp/Device.hxx @@ -85,6 +85,10 @@ public: UPnPDevice(const std::string &url, const char *description); UPnPDevice() : ok(false) {} + + UPnPDevice(const UPnPDevice &) = delete; + UPnPDevice(UPnPDevice &&) = default; + UPnPDevice &operator=(UPnPDevice &&) = default; }; #endif /* _UPNPDEV_HXX_INCLUDED_ */ |