From 002966323c42f92b2fb9b43b7b09789188ef0e6f Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Thu, 7 Jan 2021 16:44:07 -0500 Subject: [PATCH] Update float_common.h --- include/fast_float/float_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 022716f..da8f7e8 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -179,7 +179,7 @@ fastfloat_really_inline value128 full_multiplication(uint64_t a, struct adjusted_mantissa { uint64_t mantissa{0}; - int power2{0}; // a negative value indicate an invalid result + int power2{0}; // a negative value indicates an invalid result adjusted_mantissa() = default; // bool operator==(const adjusted_mantissa &o) const = default; bool operator==(const adjusted_mantissa &o) const { @@ -373,4 +373,4 @@ inline OStream& operator<<(OStream &out, const fast_float::decimal &d) { return out; } -#endif \ No newline at end of file +#endif