Remove duplicate expressions on both sides of ||

This commit is contained in:
Richard Quirk 2011-11-08 21:49:25 +01:00
parent d1bc8819f9
commit d5c7c5d098
1 changed files with 2 additions and 2 deletions

View File

@ -316,10 +316,10 @@ bool MathLib::isNullValue(const std::string &str)
|| str == "-0E+00" || str == "+0E+00"
|| str == "+0E-00" || str == "+0"
|| str == "+0.0" || str == "+0."
|| str == "0.0" || str == "-0e-00"
|| str == "0.0"
|| str == "+0e+00" || str == "-0e+00"
|| str == "+0e-00" || str == "-0e-00"
|| str == "-0E-0" || str == "+0E-00");
|| str == "-0E-0");
}
bool MathLib::isOctalDigit(char c)