Skip to content

Commit

Permalink
- added missing type (array of enumerations)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Walther committed Sep 9, 2015
1 parent 2523b1b commit ed38335
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Compiler/Template/CodegenCppCommon.tpl
Expand Up @@ -644,8 +644,9 @@ template crefStartValueType2(DAE.Type ty)
case T_ARRAY(ty=T_REAL(__)) then 'Real'
case T_ARRAY(ty=T_BOOL(__)) then 'Bool'
case T_ARRAY(ty=T_STRING(__)) then 'String'
else "error start value type"
end match
case T_ARRAY(ty=T_ENUMERATION(__)) then 'Int'
else "error start value type"
end match
end crefStartValueType2;

/*******************************************************************************************************************************************************
Expand Down

0 comments on commit ed38335

Please sign in to comment.