Skip to content

Commit

Permalink
- removed wrong brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Walther committed Sep 25, 2015
1 parent 2fa610a commit 4a58ffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/Template/CodegenCpp.tpl
Expand Up @@ -4871,12 +4871,12 @@ template recordDeclarationHeader(RecordDeclaration recDecl, SimCode simCode, Tex
case r as RECORD_DECL_FULL(__) then
match aliasName
case SOME(str) then
let &dummyElemCreation += '<%r.name%>Type dummy<%r.name%>Type();<%\n%>'
let &dummyElemCreation += '<%r.name%>Type dummy<%r.name%>Type;<%\n%>'
<<
typedef <%str%>Type <%r.name%>Type;
>>
else
let &dummyElemCreation += '<%r.name%>Type dummy<%r.name%>Type();<%\n%>'
let &dummyElemCreation += '<%r.name%>Type dummy<%r.name%>Type;<%\n%>'
<<
struct <%r.name%>Type
{
Expand Down

0 comments on commit 4a58ffa

Please sign in to comment.