diff options
-rw-r--r-- | autodoc/source/parser/cpp/pe_vafu.cxx | 6 | ||||
-rw-r--r-- | autodoc/source/parser/cpp/preproc.cxx | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/autodoc/source/parser/cpp/pe_vafu.cxx b/autodoc/source/parser/cpp/pe_vafu.cxx index a0df88666ba3..22732b076b54 100644 --- a/autodoc/source/parser/cpp/pe_vafu.cxx +++ b/autodoc/source/parser/cpp/pe_vafu.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pe_vafu.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: np $ $Date: 2002-05-14 09:02:19 $ + * last change: $Author: obo $ $Date: 2004-11-15 13:39:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -356,6 +356,8 @@ PE_VarFunc::SpReturn_Type() pStati->SetCur(afterClassDecl); eResultType = result_ignore; break; + default: + ; } } diff --git a/autodoc/source/parser/cpp/preproc.cxx b/autodoc/source/parser/cpp/preproc.cxx index 36c5c1225a34..b40ba4b9ac37 100644 --- a/autodoc/source/parser/cpp/preproc.cxx +++ b/autodoc/source/parser/cpp/preproc.cxx @@ -2,9 +2,9 @@ * * $RCSfile: preproc.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: np $ $Date: 2002-05-14 09:02:19 $ + * last change: $Author: obo $ $Date: 2004-11-15 13:40:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -161,10 +161,9 @@ PreProcessor::On_expect_macro_param( cpp::Token & let_drToken ) nBracketInParameterCounter--; else { - aCurParamText; if ( NOT csv::no_str(aCurParamText.c_str()) ) { - aCurMacroParams.push_back( udmstri(aCurParamText.c_str()) ); + aCurMacroParams.push_back( String(aCurParamText.c_str()) ); } csv_assert( aCurMacroParams.size() == pCurMacro->ParamCount() ); |