diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-22 13:36:01 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-22 13:36:01 +0000 |
commit | c0c1b01a32b91984d61f2d0b9146719fcaed7e09 (patch) | |
tree | 81c13d0e19eab897eb35010f393e33f91bc56574 /sax | |
parent | ebf767eeb2a169ba533e1b2ffccf16f41d95df35 (diff) |
WaE: warning C4101: ´e´ : unreferenced local variable
Change-Id: Ifa143e5a8f0e8254fbd324032951517d3a30c4c8
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 6 |
1 files 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<XFastContextHandler *>( 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() ); } |