Skip to content

Commit

Permalink
- Fix for (some) polymorphic functions using array<A'>
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@8939 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed May 11, 2011
1 parent d576632 commit f4688aa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Compiler/FrontEnd/Types.mo
Expand Up @@ -6110,6 +6110,11 @@ algorithm
ty = replaceSolvedBinding(ty, solvedBindings);
ty = (DAE.T_LIST(ty),NONE());
then ty;
case ((DAE.T_META_ARRAY(ty),_),_)
equation
ty = replaceSolvedBinding(ty, solvedBindings);
ty = (DAE.T_META_ARRAY(ty),NONE());
then ty;
case ((DAE.T_METAOPTION(ty),_),_)
equation
ty = replaceSolvedBinding(ty, solvedBindings);
Expand Down

0 comments on commit f4688aa

Please sign in to comment.