From 46bfd5f4ad5f67f3ba2f58958d36020ec483b839 Mon Sep 17 00:00:00 2001 From: crouzet Date: Fri, 27 Apr 2007 10:13:18 +0000 Subject: [PATCH] bug correction : add a missing ";" for 6 types : double&, int&, float&, ... --- scripts/parse3.awk | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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" # -- 2.39.2