summaryrefslogtreecommitdiff
path: root/binaryurp/source/incomingreply.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/incomingreply.hxx')
-rw-r--r--binaryurp/source/incomingreply.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/binaryurp/source/incomingreply.hxx b/binaryurp/source/incomingreply.hxx
index 420c5169adde..c2f5353fff4c 100644
--- a/binaryurp/source/incomingreply.hxx
+++ b/binaryurp/source/incomingreply.hxx
@@ -21,6 +21,7 @@
#include <sal/config.h>
+#include <utility>
#include <vector>
#include "binaryany.hxx"
@@ -33,9 +34,9 @@ private:
IncomingReply& operator=(const IncomingReply&) = delete;
public:
IncomingReply(
- bool theException, BinaryAny const & theReturnValue,
+ bool theException, BinaryAny theReturnValue,
std::vector< BinaryAny >&& theOutArguments):
- exception(theException), returnValue(theReturnValue),
+ exception(theException), returnValue(std::move(theReturnValue)),
outArguments(std::move(theOutArguments))
{}