diff --git a/Userland/Libraries/LibJS/Runtime/BigInt.h b/Userland/Libraries/LibJS/Runtime/BigInt.h index 717e07d3af..f735a89780 100644 --- a/Userland/Libraries/LibJS/Runtime/BigInt.h +++ b/Userland/Libraries/LibJS/Runtime/BigInt.h @@ -13,7 +13,7 @@ namespace JS { class BigInt final : public Cell { public: - BigInt(Crypto::SignedBigInteger); + explicit BigInt(Crypto::SignedBigInteger); virtual ~BigInt(); const Crypto::SignedBigInteger& big_integer() const { return m_big_integer; }