|
From: Robert L. <rle...@us...> - 2007-03-28 16:42:48
|
Update of /cvsroot/ccmtools/ccmtools/src/ccmtools/CppGenerator In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv23327/src/ccmtools/CppGenerator Modified Files: Tag: RELEASE-0_8-BRANCH CppLocalGenerator.java Log Message: bug fix: wrong default ctor with structures Index: CppLocalGenerator.java =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/src/ccmtools/CppGenerator/CppLocalGenerator.java,v retrieving revision 1.54.2.1 retrieving revision 1.54.2.2 diff -C2 -d -r1.54.2.1 -r1.54.2.2 *** CppLocalGenerator.java 25 Jan 2007 17:37:20 -0000 1.54.2.1 --- CppLocalGenerator.java 28 Mar 2007 16:42:26 -0000 1.54.2.2 *************** *** 1,18 **** /* ! * CCM Tools : C++ Code Generator Library * Leif Johnson <le...@am...> ! * Egon Teiniker <ego...@sa...> * Copyright (C) 2002 - 2007 ccmtools.sf.net ! * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. [...1529 lines suppressed...] { --- 1330,1334 ---- return code.toString(); } ! public String getOperationReturn(MOperationDef op) { *************** *** 1356,1360 **** code = "return "; } ! else { code = ""; } --- 1339,1343 ---- code = "return "; } ! else { code = ""; } |