test/WhiteBoxTests.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
New commits: commit d390d646a65d16eacfa9c1a80de6e8eccdea387b Author: Miklos Vajna <[email protected]> AuthorDate: Wed Dec 12 09:03:15 2018 +0100 Commit: Miklos Vajna <[email protected]> CommitDate: Wed Dec 12 09:03:15 2018 +0100 WhiteBoxTests: clean up redundant member initialization Change-Id: I7b9a4453a94df0a9311bfdb6c0ea3bf8c8e74208 diff --git a/test/WhiteBoxTests.cpp b/test/WhiteBoxTests.cpp index 79e81f07e..1da160d4e 100644 --- a/test/WhiteBoxTests.cpp +++ b/test/WhiteBoxTests.cpp @@ -488,9 +488,7 @@ class DummyDocument : public DocumentManagerInterface std::mutex _documentMutex; public: DummyDocument() - : _tileQueue(new TileQueue()), - _mutex(), - _documentMutex() + : _tileQueue(new TileQueue()) { } bool onLoad(const std::string& /*sessionId*/, _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
