diff --git a/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp b/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp index a0e30d96ed..23fcd2dde9 100644 --- a/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp +++ b/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp @@ -104,7 +104,7 @@ String UnsignedBigInteger::to_base(u16 N) const u64 UnsignedBigInteger::to_u64() const { - VERIFY(sizeof(Word) == 4); + static_assert(sizeof(Word) == 4); if (!length()) return 0; u64 value = m_words[0];