mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
LibJS: Mark single argument BigInt() constructor as 'explicit'
This commit is contained in:
parent
05aeff1c4d
commit
82792a6815
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ namespace JS {
|
||||||
|
|
||||||
class BigInt final : public Cell {
|
class BigInt final : public Cell {
|
||||||
public:
|
public:
|
||||||
BigInt(Crypto::SignedBigInteger);
|
explicit BigInt(Crypto::SignedBigInteger);
|
||||||
virtual ~BigInt();
|
virtual ~BigInt();
|
||||||
|
|
||||||
const Crypto::SignedBigInteger& big_integer() const { return m_big_integer; }
|
const Crypto::SignedBigInteger& big_integer() const { return m_big_integer; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue