Kaydet (Commit) 18f3cefd authored tarafından Stephan Bergmann's avatar Stephan Bergmann

warning C4101: unreferenced local variable

Change-Id: I3d2d46c7b722557f3dbfd95eb2b8649f8078d4df
üst 67badfc9
......@@ -74,7 +74,7 @@ void CBaseReader::Initialize( const std::string& ContentName)
parser.parse(&m_ZipContent[0], m_ZipContent.size());
}
}
catch(std::exception& ex)
catch(std::exception&)
{
// OSL_ENSURE( false, ex.what() );
}
......
......@@ -34,7 +34,7 @@ CBaseReader( DocumentName )
m_DefaultLocale = DocumentLocale;
Initialize( DOC_CONTENT_NAME );
}
catch(xml_parser_exception& ex)
catch(xml_parser_exception&)
{
// OSL_ENSURE(false, ex.what());
}
......@@ -52,7 +52,7 @@ try
m_DefaultLocale = DocumentLocale;
Initialize( DOC_CONTENT_NAME );
}
catch(xml_parser_exception& ex)
catch(xml_parser_exception&)
{
// OSL_ENSURE(false, ex.what());
}
......
......@@ -53,7 +53,7 @@ CBaseReader( DocumentName )
Initialize( META_CONTENT_NAME );
}
catch(xml_parser_exception& ex)
catch(xml_parser_exception&)
{
// OSL_ENSURE(false, ex.what());
}
......@@ -90,7 +90,7 @@ try
Initialize( META_CONTENT_NAME );
}
catch(xml_parser_exception& ex)
catch(xml_parser_exception&)
{
// OSL_ENSURE(false, ex.what());
}
......
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