diff --git a/src/lib/upnp/Device.cxx b/src/lib/upnp/Device.cxx index 266bcd29c..89dac695f 100644 --- a/src/lib/upnp/Device.cxx +++ b/src/lib/upnp/Device.cxx @@ -7,9 +7,6 @@ #include -/* this destructor exists here just so it won't get inlined */ -UPnPDevice::~UPnPDevice() noexcept = default; - /** * An XML parser which constructs an UPnP device object from the * device descriptor. diff --git a/src/lib/upnp/Device.hxx b/src/lib/upnp/Device.hxx index 2098515f0..6c8e896a9 100644 --- a/src/lib/upnp/Device.hxx +++ b/src/lib/upnp/Device.hxx @@ -45,13 +45,6 @@ public: // Services provided by this device. std::vector services; - UPnPDevice() = default; - UPnPDevice(const UPnPDevice &) = delete; - UPnPDevice(UPnPDevice &&) = default; - UPnPDevice &operator=(UPnPDevice &&) = default; - - ~UPnPDevice() noexcept; - /** Build device from xml description downloaded from discovery * @param url where the description came from * @param description the xml device description