From 0940229305247b4e64e8c85c9734020c9808a6ec Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sat, 31 Aug 2019 19:31:43 +0200 Subject: Fix '..' To complete this: https://gerrit.libreoffice.org/#/c/78312/ This is a massive replace for lines ending with ".." instead of "..." It passed "make check" on Linux. Change-Id: I07fa7b2e30ba9ea17a1f9a5e21c57216ba958efe Reviewed-on: https://gerrit.libreoffice.org/78356 Reviewed-by: Julien Nabet Tested-by: Jenkins --- o3tl/qa/test-lru_map.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'o3tl') diff --git a/o3tl/qa/test-lru_map.cxx b/o3tl/qa/test-lru_map.cxx index f0810084b6c7..5ceec149571c 100644 --- a/o3tl/qa/test-lru_map.cxx +++ b/o3tl/qa/test-lru_map.cxx @@ -146,7 +146,7 @@ void lru_map_test::testLruRemoval() o3tl::lru_map lru(5); CPPUNIT_ASSERT_EQUAL(size_t(0), lru.size()); - // fill up.. + // fill up... lru.insert(std::make_pair(1, 100)); lru.insert(std::make_pair(2, 200)); lru.insert(std::make_pair(3, 300)); -- cgit