From 51b5b93092d6231615de470c62494c24e54828a1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 25 Jan 2020 17:49:47 +0200 Subject: remove some unused local vars found by a more aggressive variant of loplugin:unusedvariables. This is my first pass, committing the simplest and most obviously unnecessary vars Change-Id: I9676a6e39a101937097788548764506c93811c57 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87414 Tested-by: Jenkins Reviewed-by: Noel Grandin --- io/source/stm/omark.cxx | 4 ---- 1 file changed, 4 deletions(-) (limited to 'io') diff --git a/io/source/stm/omark.cxx b/io/source/stm/omark.cxx index 7623392b4277..0c7a821423f4 100644 --- a/io/source/stm/omark.cxx +++ b/io/source/stm/omark.cxx @@ -311,8 +311,6 @@ Reference < XConnectable > OMarkableOutputStream::getPredecessor() void OMarkableOutputStream::checkMarksAndFlush() { - map >::iterator ii; - // find the smallest mark sal_Int32 nNextFound = m_nCurrentPos; for (auto const& mark : m_mapMarks) @@ -731,8 +729,6 @@ Reference< XConnectable > OMarkableInputStream::getPredecessor() void OMarkableInputStream::checkMarksAndFlush() { - map >::iterator ii; - // find the smallest mark sal_Int32 nNextFound = m_nCurrentPos; for (auto const& mark : m_mapMarks) -- cgit