summaryrefslogtreecommitdiff
path: root/autodoc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-08-24 11:22:56 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-08-24 11:30:17 +0900
commite1a1091d0ae61ba46c6d063a92db0b7d1ce65942 (patch)
tree5cd7f5ba6ad9fc1e859263332b4f96167ac927ce /autodoc
parent8dfa38c418125ad880e9d4b2a968f0f1778d6de4 (diff)
catch ignored exceptions by const reference
Diffstat (limited to 'autodoc')
-rw-r--r--autodoc/source/parser_i/idl/unoidl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/autodoc/source/parser_i/idl/unoidl.cxx b/autodoc/source/parser_i/idl/unoidl.cxx
index 740a4ecab1ad..204e6c6c4249 100644
--- a/autodoc/source/parser_i/idl/unoidl.cxx
+++ b/autodoc/source/parser_i/idl/unoidl.cxx
@@ -102,7 +102,7 @@ IdlParser::Run( const autodoc::FileCollector_Ifc & i_rFiles )
{
pFileParsePerformers->ParseFile(*iter);
}
- catch (X_AutodocParser &)
+ catch (const X_AutodocParser &)
{
/// Ignore and goon
TheMessages().Out_ParseError(CurFile(), CurLine());