loolwsd/LOOLKit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 6006e2200151843efa983107e4039f9935e5906b Author: Miklos Vajna <[email protected]> Date: Mon Sep 12 08:15:33 2016 +0200 LOOLKit: use std::move() in Document ctor Change-Id: I25aeb5285465385858180747f441a69b858c4fe6 diff --git a/loolwsd/LOOLKit.cpp b/loolwsd/LOOLKit.cpp index 94d02ef..73ade5b 100644 --- a/loolwsd/LOOLKit.cpp +++ b/loolwsd/LOOLKit.cpp @@ -405,7 +405,7 @@ public: _jailId(jailId), _docKey(docKey), _url(url), - _queue(queue), + _queue(std::move(queue)), _ws(ws), _docPassword(""), _haveDocPassword(false), _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
