Fix value overflow on iOS

This commit is contained in:
Fedor Indutny
2026-03-11 09:52:56 -07:00
committed by GitHub
parent 600b91d867
commit 00a8e02a4f

View File

@@ -1,4 +1,4 @@
// Copyright 2026 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export const MAX_VALUE = 0xffffffff_ffffffffn;
export const MAX_VALUE = 0x7fffffff_ffffffffn;