Skip to content

Commit

Permalink
Fix EDD logical functions parse error #152
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3xdh committed Sep 19, 2022
1 parent 0eaf4f9 commit 1e4ffc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qucs/extsimkernels/spicecompat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ void spicecompat::splitEqn(QString &eqn, QStringList &tokens)
tokens.clear();
QString tok = "";
for (QString::iterator it=eqn.begin();it!=eqn.end();it++) {
QString delim = "=()*/+-^<>:?";
QString delim = "=()*/+-^<>:?&>=%!|";
if (it->isSpace()) continue;
if (delim.contains(*it)) {
if (!tok.isEmpty()) tokens.append(tok);
Expand Down

0 comments on commit 1e4ffc5

Please sign in to comment.