diff options
Diffstat (limited to 'absl/strings/numbers.cc')
-rw-r--r-- | absl/strings/numbers.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/strings/numbers.cc b/absl/strings/numbers.cc index 558c3396681d..38d148690e2e 100644 --- a/absl/strings/numbers.cc +++ b/absl/strings/numbers.cc @@ -54,7 +54,7 @@ bool SimpleAtof(absl::string_view str, float* out) { // not all non-whitespace characters consumed return false; } - // from_chars() with DR 3801's current wording will return max() on + // from_chars() with DR 3081's current wording will return max() on // overflow. SimpleAtof returns infinity instead. if (result.ec == std::errc::result_out_of_range) { if (*out > 1.0) { @@ -80,7 +80,7 @@ bool SimpleAtod(absl::string_view str, double* out) { // not all non-whitespace characters consumed return false; } - // from_chars() with DR 3801's current wording will return max() on + // from_chars() with DR 3081's current wording will return max() on // overflow. SimpleAtod returns infinity instead. if (result.ec == std::errc::result_out_of_range) { if (*out > 1.0) { |