Skip to content

Commit

Permalink
- and not or!
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@14250 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Dec 6, 2012
1 parent 1ad1562 commit 03aa37e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/FrontEnd/InstSection.mo
Expand Up @@ -4589,7 +4589,7 @@ algorithm
equation
b1 = Absyn.expContainsInitial(exp);
b2 = SCode.algorithmsContainReinit(algs);
false = boolOr(b1, b2);
false = boolAnd(b1, b2);
then
();

Expand Down Expand Up @@ -4675,7 +4675,7 @@ algorithm
equation
b1 = Absyn.expContainsInitial(exp);
b2 = SCode.equationsContainReinit(el);
false = boolOr(b1, b2);
false = boolAnd(b1, b2);
then
();

Expand Down

0 comments on commit 03aa37e

Please sign in to comment.