Skip to content

Commit

Permalink
- fix wrong negative logic.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@17146 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Sep 9, 2013
1 parent 26dfba7 commit 854bb54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/Util/Flags.mo
Original file line number Diff line number Diff line change
Expand Up @@ -1935,8 +1935,8 @@ algorithm
ccompiler = System.getCCompiler();
-1 = System.stringFind(ccompiler, "clang");
then
true;
else false;
false;
else true;
end matchcontinue;
end configuredWithClang;

Expand Down

0 comments on commit 854bb54

Please sign in to comment.