From e8b5cbea337599f183205605ed2ba2aa589b45ed Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Tue, 22 Oct 2024 13:49:39 -0400 Subject: [PATCH] Typo fix --- src/app/util/odd-sized-integers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/util/odd-sized-integers.h b/src/app/util/odd-sized-integers.h index efaaa56f731ec9..447f56444c0bdb 100644 --- a/src/app/util/odd-sized-integers.h +++ b/src/app/util/odd-sized-integers.h @@ -132,7 +132,7 @@ inline constexpr int64_t MinSignedValue(unsigned ByteSize) { return std::numeric_limits::min(); } - return -(static_cast(1) << (8 * ByteSize - 1)); + return -(static_cast(1) << (8 * ByteSize - 1)); } /// Readability-method to express that the maximum signed value is a null value