Optimize value check

This commit is contained in:
Alexander V. Brezgin 2016-11-20 03:55:08 +03:00
parent b4abc8241f
commit ee7935986e

View File

@ -1366,7 +1366,7 @@ bool Value::isIntegral() const {
#endif
}
bool Value::isDouble() const { return type_ == realValue || isIntegral(); }
bool Value::isDouble() const { return type_ == intValue || type_ == uintValue || type_ == realValue; }
bool Value::isNumeric() const { return isDouble(); }