Skip to content

Commit

Permalink
- fix the compilation
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@13129 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Oct 2, 2012
1 parent 7cdee4e commit e2f0cac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Compiler/FrontEnd/SCodeDump.mo
Expand Up @@ -235,13 +235,15 @@ algorithm
end matchcontinue;
end printElementStr;

public constant String noEachStr = "";

public function unparseElementStr
"function: unparseElementStr
Print SCode.Element to a string."
input SCode.Element inElement;
output String outString;
algorithm
outString := Tpl.tplString(SCodeDumpTpl.dumpElement, inElement);
outString := Tpl.tplString2(SCodeDumpTpl.dumpElement, inElement, noEachStr);
end unparseElementStr;

public function shortElementStr
Expand Down

0 comments on commit e2f0cac

Please sign in to comment.