curlpp
curlpp copied to clipboard
[BUG] Wrong value returned by info getter
In Info.cpp line 56:
value = (double)tmp;
should be
value = *(double*)&tmp;
otherwise, the raw int64 value is assigned.