You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to know why aJsonStream::printFloat is not written simply as:
int aJsonStream::printFloat(aJsonObject *item)
{
if (item != NULL)
{
double d = item->valuefloat;
this->print(d, FLOAT_PRECISION);
}
//printing nothing is ok
return 0;
}
Thanks in advance,
Nicolas
The text was updated successfully, but these errors were encountered:
Hello,
I would like to know why aJsonStream::printFloat is not written simply as:
Thanks in advance,
Nicolas
The text was updated successfully, but these errors were encountered: