Open tgockel opened 6 years ago
extract_millis in connection.cpp uses std::stod, which requires conversion to a std::string -- an allocation. We should use std::from_chars but this is not supported (as of GCC 7.2).
extract_millis
connection.cpp
std::stod
std::string
std::from_chars
extract_millis
inconnection.cpp
usesstd::stod
, which requires conversion to astd::string
-- an allocation. We should usestd::from_chars
but this is not supported (as of GCC 7.2).