Skip to content

Commit 7e2e9c5

Browse files
Marcus WaltherOpenModelica-Hudson
authored andcommitted
- changed return type of evluate functions to void
1 parent b913ad9 commit 7e2e9c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Compiler/Template/CodegenCpp.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14065,15 +14065,15 @@ template createEvaluateWithSplit(Integer sectionIndex, Context context, list<Sim
1406514065
;separator="\n")
1406614066
let &extraFuncs +=
1406714067
<<
14068-
<%\n%>bool <%className%>::<%functionName%>_<%sectionIndex%>(const UPDATETYPE command)
14068+
<%\n%>void <%className%>::<%functionName%>_<%sectionIndex%>(const UPDATETYPE command)
1406914069
{
1407014070
<%varDecls%>
1407114071
<%equation_func_calls%>
1407214072
}
1407314073
>>
1407414074
let &extraFuncsDecl +=
1407514075
<<
14076-
bool <%functionName%>_<%sectionIndex%>(const UPDATETYPE command);<%\n%>
14076+
void <%functionName%>_<%sectionIndex%>(const UPDATETYPE command);<%\n%>
1407714077
>>
1407814078
<<
1407914079
<%functionName%>_<%sectionIndex%>(command);

0 commit comments

Comments
 (0)