parent
0ff39eb989
commit
b0eee4afe5
@ -4,10 +4,8 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
#define p10(v) __builtin_powi(10, v)
|
||||
|
||||
|
||||
namespace pxt {
|
||||
|
||||
static HandlerBinding *handlerBindings;
|
||||
@ -635,7 +633,6 @@ void mycvt(double d, char *buf) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//%
|
||||
String toString(TValue v) {
|
||||
|
||||
@ -654,6 +651,11 @@ String toString(TValue v) {
|
||||
} else if (t == ValType::Number) {
|
||||
char buf[64];
|
||||
|
||||
if (isNumber(v)) {
|
||||
itoa(numValue(v), buf);
|
||||
return mkString(buf);
|
||||
}
|
||||
|
||||
double x = toDouble(v);
|
||||
|
||||
if (isnan(x))
|
||||
|
Loading…
Reference in New Issue
Block a user