We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05aeff1 commit 82792a6Copy full SHA for 82792a6
Userland/Libraries/LibJS/Runtime/BigInt.h
@@ -13,7 +13,7 @@ namespace JS {
13
14
class BigInt final : public Cell {
15
public:
16
- BigInt(Crypto::SignedBigInteger);
+ explicit BigInt(Crypto::SignedBigInteger);
17
virtual ~BigInt();
18
19
const Crypto::SignedBigInteger& big_integer() const { return m_big_integer; }
0 commit comments