summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-12-30 12:44:44 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-12-30 12:44:44 +0000
commiteeb44ec5af10fdd8cde4475edbb149b5084a4466 (patch)
tree8635a6b2251150311ad9e4e517717d9ad074df3e
parentSimpler, const pointer typedefs (diff)
downloadnetfs-gitfs-eeb44ec5af10fdd8cde4475edbb149b5084a4466.tar.bz2
netfs-gitfs-eeb44ec5af10fdd8cde4475edbb149b5084a4466.tar.xz
netfs-gitfs-eeb44ec5af10fdd8cde4475edbb149b5084a4466.zip
Don't move implicit rvalue ref
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 59fa299..91c6b15 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -27,7 +27,7 @@ namespace GitFS {
addObjects(const std::string &, const Ice::CommunicatorPtr & ic, const Ice::StringSeq &,
const Ice::ObjectAdapterPtr & adp) override
{
- IceTray::Cube::addObject<NetFS::Service, RepoList>(adp, "Service", std::move(ic->getProperties()));
+ IceTray::Cube::addObject<NetFS::Service, RepoList>(adp, "Service", ic->getProperties());
}
};