mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LibJS: Remove superfluous explicit in AST.h (#1395)
This commit is contained in:
parent
28731179b1
commit
11aac6fdce
Notes:
sideshowbarker
2024-07-19 17:36:52 +09:00
Author: https://github.com/f-eiwu Commit: https://github.com/SerenityOS/serenity/commit/11aac6fdceb Pull-request: https://github.com/SerenityOS/serenity/pull/1395
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ private:
|
|||
|
||||
class IfStatement : public ASTNode {
|
||||
public:
|
||||
explicit IfStatement(NonnullOwnPtr<Expression> predicate, NonnullOwnPtr<ScopeNode> consequent, NonnullOwnPtr<ScopeNode> alternate)
|
||||
IfStatement(NonnullOwnPtr<Expression> predicate, NonnullOwnPtr<ScopeNode> consequent, NonnullOwnPtr<ScopeNode> alternate)
|
||||
: m_predicate(move(predicate))
|
||||
, m_consequent(move(consequent))
|
||||
, m_alternate(move(alternate))
|
||||
|
|
Loading…
Reference in a new issue