|
|
@ -1004,7 +1004,7 @@ bool Tokenizer::ParseInteger(const std::string& text, uint64_t max_value, |
|
|
|
double Tokenizer::ParseFloat(const std::string& text) { |
|
|
|
double Tokenizer::ParseFloat(const std::string& text) { |
|
|
|
double result = 0; |
|
|
|
double result = 0; |
|
|
|
if (!TryParseFloat(text, &result)) { |
|
|
|
if (!TryParseFloat(text, &result)) { |
|
|
|
LOG(DFATAL) |
|
|
|
GOOGLE_LOG(DFATAL) |
|
|
|
<< " Tokenizer::ParseFloat() passed text that could not have been" |
|
|
|
<< " Tokenizer::ParseFloat() passed text that could not have been" |
|
|
|
" tokenized as a float: " |
|
|
|
" tokenized as a float: " |
|
|
|
<< absl::CEscape(text); |
|
|
|
<< absl::CEscape(text); |
|
|
|