fix dv::is_numeric

This commit is contained in:
MihailRis
2024-10-18 11:04:10 +03:00
parent 4844997c6a
commit fc9f2574cd
+1 -1
View File
@@ -511,7 +511,7 @@ namespace dv {
};
inline bool is_numeric(const value& val) {
return val.isInteger() && val.isNumber();
return val.isInteger() || val.isNumber();
}
}