Remove unused ParseDouble and ParsePrechecks

This commit is contained in:
MarcoFalke
2021-10-04 09:55:05 +02:00
parent fa3cd28535
commit fa9d72a794
4 changed files with 0 additions and 61 deletions

View File

@@ -158,13 +158,6 @@ std::optional<T> ToIntegral(const std::string& str)
*/
[[nodiscard]] bool ParseUInt64(const std::string& str, uint64_t *out);
/**
* Convert string to double with strict parse error feedback.
* @returns true if the entire string could be parsed as valid double,
* false if not the entire string could be parsed or when overflow or underflow occurred.
*/
[[nodiscard]] bool ParseDouble(const std::string& str, double *out);
/**
* Convert a span of bytes to a lower-case hexadecimal string.
*/