Remove duplicate expressions on both sides of ||
This commit is contained in:
parent
d1bc8819f9
commit
d5c7c5d098
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue