diff options
author | Max Kellermann <max@duempel.org> | 2014-01-22 09:37:11 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-22 09:42:46 +0100 |
commit | 7d194aceb694c5ae56b47af9ac33bf4a56bd1ea1 (patch) | |
tree | 8a9fc9235c60ef72f277d0766c69416b204a4fcc /src/db | |
parent | 2722b8a3df356bdb36fe498fb2bbc709e5ae4bc1 (diff) |
db/upnp/Device: emplace/move the UPnPService into the vector
Reduce overhead.
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/upnp/Device.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/upnp/Device.cxx b/src/db/upnp/Device.cxx index e668f839a..8f37a9fb8 100644 --- a/src/db/upnp/Device.cxx +++ b/src/db/upnp/Device.cxx @@ -47,7 +47,7 @@ protected: virtual void EndElement(const XML_Char *name) { if (!strcmp(name, "service")) { - m_device.services.push_back(m_tservice); + m_device.services.emplace_back(std::move(m_tservice)); m_tservice.clear(); } |