From 9dd836e4f6bd4be378b56bd581d27e2b02077f0b Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Thu, 16 Mar 2017 09:13:49 +0100 Subject: xmlsecurity: use auto when declaring iterators Change-Id: Ie56c0c0e1917f159957babca346f1a3fa04bc629 Reviewed-on: https://gerrit.libreoffice.org/35253 Reviewed-by: Miklos Vajna Tested-by: Jenkins --- xmlsecurity/source/pdfio/pdfdocument.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmlsecurity/source/pdfio') diff --git a/xmlsecurity/source/pdfio/pdfdocument.cxx b/xmlsecurity/source/pdfio/pdfdocument.cxx index 5dd2f0aeaa65..94ebd1f46b55 100644 --- a/xmlsecurity/source/pdfio/pdfdocument.cxx +++ b/xmlsecurity/source/pdfio/pdfdocument.cxx @@ -1339,8 +1339,8 @@ size_t PDFDocument::FindStartXRef(SvStream& rStream) aBuf.resize(nSize); OString aPrefix("startxref"); // Find the last startxref at the end of the document. - std::vector::iterator itLastValid = aBuf.end(); - std::vector::iterator it = aBuf.begin(); + auto itLastValid = aBuf.end(); + auto it = aBuf.begin(); while (true) { it = std::search(it, aBuf.end(), aPrefix.getStr(), aPrefix.getStr() + aPrefix.getLength()); -- cgit