diff options
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/upnp/Directory.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/upnp/Directory.cxx b/src/db/upnp/Directory.cxx index 9d3e0daeb..9f4418a70 100644 --- a/src/db/upnp/Directory.cxx +++ b/src/db/upnp/Directory.cxx @@ -219,7 +219,7 @@ protected: if ((!strcmp(name, "container") || !strcmp(name, "item")) && checkobjok()) { tag.Commit(m_tobj.tag); - m_dir.objects.push_back(std::move(m_tobj)); + m_dir.objects.emplace_back(std::move(m_tobj)); } state = NONE; |