mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 02:26:10 +00:00
LibJS: Mark single argument BigInt() constructor as 'explicit'
This commit is contained in:
parent
05aeff1c4d
commit
82792a6815
Notes:
sideshowbarker
2024-07-18 01:44:59 +09:00
Author: https://github.com/linusg
Commit: 82792a6815
Pull-request: https://github.com/SerenityOS/serenity/pull/10700
Reviewed-by: https://github.com/IdanHo ✅
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