Kaydet (Commit) 2b4d91f5 authored tarafından Caolán McNamara's avatar Caolán McNamara

catch by const reference

üst 82eb8062
......@@ -241,7 +241,7 @@ inline sal_uInt32 SaxWriterHelper::writeSequence() throw( SAXException )
{
m_out->writeBytes( m_Sequence );
}
catch( IOException & e )
catch (const IOException & e)
{
Any a;
a <<= e;
......@@ -1125,7 +1125,7 @@ void SAXWriter::endDocument(void) throw(SAXException, RuntimeE
{
m_out->closeOutput();
}
catch( IOException & e )
catch (const IOException & e)
{
Any a;
a <<= e;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment