aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-02-25 12:36:14 +0100
committerTor Egge <Tor.Egge@broadpark.no>2019-02-25 12:43:07 +0100
commitae5bc11f30f156eb996b33f426f894384357309a (patch)
tree56f07ee0b83fa061abef507a7e39da2c2e63d16c /documentapi
parentd3c80d67c20b23b3cff0ed49f0f6fa57bce703df (diff)
Eliminate some gcc 9 warnings.
Diffstat (limited to 'documentapi')
-rw-r--r--documentapi/src/vespa/documentapi/messagebus/routablefactories60.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentapi/src/vespa/documentapi/messagebus/routablefactories60.cpp b/documentapi/src/vespa/documentapi/messagebus/routablefactories60.cpp
index c34291c634f..00c16c16fec 100644
--- a/documentapi/src/vespa/documentapi/messagebus/routablefactories60.cpp
+++ b/documentapi/src/vespa/documentapi/messagebus/routablefactories60.cpp
@@ -567,7 +567,7 @@ RoutableFactories60::PutDocumentReplyFactory::doDecode(document::ByteBuffer &buf
// Doing an explicit move here to force converting result to an rvalue.
// This is done automatically in GCC >= 5.
- return std::move(reply);
+ return reply;
}
bool