From 6f94c644c3c0c08b245d66519ff7116c54d600b6 Mon Sep 17 00:00:00 2001 From: Pierre-André Jacquod Date: Mon, 29 Aug 2011 09:53:08 +0200 Subject: [cppchecker] suppression of unread Variable --- store/source/storcach.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'store/source/storcach.cxx') diff --git a/store/source/storcach.cxx b/store/source/storcach.cxx index 79c34492e978..61d42322e2ab 100644 --- a/store/source/storcach.cxx +++ b/store/source/storcach.cxx @@ -350,7 +350,7 @@ PageCache_Impl::PageCache_Impl (sal_uInt16 nPageSize) PageCache_Impl::~PageCache_Impl() { - double s_x = 0.0, s_xx = 0.0; + double s_x = 0.0; sal_Size i, n = m_hash_size; for (i = 0; i < n; i++) { @@ -364,7 +364,6 @@ PageCache_Impl::~PageCache_Impl() x += 1; } s_x += double(x); - s_xx += double(x) * double(x); } double ave = s_x / double(n); OSL_TRACE("ave hash chain length: %g", ave); -- cgit