Loading src/InputNg.h +1 −1 Original line number Diff line number Diff line Loading @@ -946,7 +946,7 @@ public: for (SizeType i = 0; i < s.length(); ++i) { char c = s[i]; bool b1 = (c<48 || c>57); bool b2 = (c != '.' && c != '-' && c != '+' && c != 'e'); bool b2 = (c != '.' && c != '-' && c != '+' && c != 'e' && c != 'E'); if (b1 && b2) { String str = s +" is not a real number\n"; str += "Suggestion: Add -DUSE_COMPLEX to your Makefile.\n"; Loading Loading
src/InputNg.h +1 −1 Original line number Diff line number Diff line Loading @@ -946,7 +946,7 @@ public: for (SizeType i = 0; i < s.length(); ++i) { char c = s[i]; bool b1 = (c<48 || c>57); bool b2 = (c != '.' && c != '-' && c != '+' && c != 'e'); bool b2 = (c != '.' && c != '-' && c != '+' && c != 'e' && c != 'E'); if (b1 && b2) { String str = s +" is not a real number\n"; str += "Suggestion: Add -DUSE_COMPLEX to your Makefile.\n"; Loading