mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:07:45 +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 {
|
||||
public:
|
||||
BigInt(Crypto::SignedBigInteger);
|
||||
explicit BigInt(Crypto::SignedBigInteger);
|
||||
virtual ~BigInt();
|
||||
|
||||
const Crypto::SignedBigInteger& big_integer() const { return m_big_integer; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue