osquery
osquery copied to clipboard
Using std::setprecision to get the right precision for double to string conversion.
Fixes https://github.com/osquery/osquery/issues/8301
boost::lexical_cast was not using the right precision for double-to-string conversion. Switched to using std::ostringstream.