From c0c1b01a32b91984d61f2d0b9146719fcaed7e09 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 22 Jan 2015 13:36:01 +0000 Subject: WaE: warning C4101: ´e´ : unreferenced local variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ifa143e5a8f0e8254fbd324032951517d3a30c4c8 --- sax/source/fastparser/fastparser.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index 82a285664823..38a1d2e65709 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -456,7 +456,7 @@ void Entity::startElement( Event *pEvent ) maContextStack.top().mxContext.set( static_cast( xContext.get() ) ); xContext.set( NULL, UNO_REF_NO_ACQUIRE ); } - catch (const Exception& e) + catch (const Exception&) { saveException( ::cppu::getCaughtException() ); } @@ -475,7 +475,7 @@ void Entity::characters( const OUString& sChars ) { xContext->characters( sChars ); } - catch (const Exception& e) + catch (const Exception&) { saveException( ::cppu::getCaughtException() ); } @@ -499,7 +499,7 @@ void Entity::endElement() else xContext->endUnknownElement( aContext.maNamespace, aContext.maElementName ); } - catch (const Exception& e) + catch (const Exception&) { saveException( ::cppu::getCaughtException() ); } -- cgit