From: crouzet Date: Fri, 27 Apr 2007 10:13:18 +0000 (+0000) Subject: bug correction : add a missing ";" for 6 types : double&, int&, float&, ... X-Git-Tag: T_EDF_15278 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=46bfd5f4ad5f67f3ba2f58958d36020ec483b839;p=tools%2Fhxx2salome.git bug correction : add a missing ";" for 6 types : double&, int&, float&, ... --- diff --git a/scripts/parse3.awk b/scripts/parse3.awk index ef10617..00ecbf7 100644 --- a/scripts/parse3.awk +++ b/scripts/parse3.awk @@ -225,12 +225,12 @@ BEGIN { cpp_impl_c["std::vector*&"]=\ "\t%s = SenderFactory::buildSender(*this,&(*_%s)[0],(*_%s).size(),true);\n" cpp_impl_c["std::string&"]="\t%s = CORBA::string_dup(_%s.c_str());\n" - cpp_impl_c["int&"]="\t%s = _%s" - cpp_impl_c["double&"]="\t%s = _%s" - cpp_impl_c["float&"]="\t%s = _%s" - cpp_impl_c["long&"]="\t%s = _%s" - cpp_impl_c["short&"]="\t%s = _%s" - cpp_impl_c["unsigned&"]="\t%s = _%s" + cpp_impl_c["int&"]="\t%s = _%s;\n" + cpp_impl_c["double&"]="\t%s = _%s;\n" + cpp_impl_c["float&"]="\t%s = _%s;\n" + cpp_impl_c["long&"]="\t%s = _%s;\n" + cpp_impl_c["short&"]="\t%s = _%s;\n" + cpp_impl_c["unsigned&"]="\t%s = _%s;\n" cpp_impl_c["const MEDMEM::MESH&"]="\t_%s->removeReference();\n" cpp_impl_c["const MEDMEM::MESH*"]="\t_%s->removeReference();\n" #