summaryrefslogtreecommitdiff
path: root/autodoc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2008-04-22 13:49:22 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2008-04-22 13:49:22 +0000
commit4192292fc5ff35a5ce6031aa0c6cb0051dc5963c (patch)
tree052fa2f266ed09249e816f80e95bbea0f2191fff /autodoc
parent6674c479b08872aa89ba5c1ed6a3d3884d845db0 (diff)
INTEGRATION: CWS hr50 (1.9.20); FILE MERGED
2008/03/10 15:47:41 hr 1.9.20.1: #i86574#: fix warning (gcc-4.2.3)
Diffstat (limited to 'autodoc')
-rw-r--r--autodoc/source/parser_i/idl/pe_vari2.cxx14
1 files changed, 9 insertions, 5 deletions
diff --git a/autodoc/source/parser_i/idl/pe_vari2.cxx b/autodoc/source/parser_i/idl/pe_vari2.cxx
index ece30f1fec3e..a06d90be8417 100644
--- a/autodoc/source/parser_i/idl/pe_vari2.cxx
+++ b/autodoc/source/parser_i/idl/pe_vari2.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: pe_vari2.cxx,v $
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
* This file is part of OpenOffice.org.
*
@@ -86,8 +86,9 @@ PE_Variable::Process_Default()
{
SetResult( not_done, push_sure, pPE_Type.Ptr() );
}
- else
+ else{
csv_assert(false);
+ }
}
void
@@ -103,8 +104,9 @@ PE_Variable::Process_Identifier( const TokIdentifier & i_rToken )
SetResult( done, stay );
eState = expect_finish;
}
- else
+ else {
csv_assert(false);
+ }
}
void
@@ -120,8 +122,9 @@ PE_Variable::Process_Punctuation( const TokPunctuation & )
SetResult( not_done, pop_success );
eState = e_none;
}
- else
+ else {
csv_assert(false);
+ }
}
void
@@ -136,8 +139,9 @@ PE_Variable::Process_BuiltInType( const TokBuiltInType & i_rToken )
SetResult( not_done, pop_success );
eState = e_none;
}
- else
+ else {
csv_assert(false);
+ }
}
void