From 11aac6fdceb9a3904ad3eb51d887c63a6dc91b74 Mon Sep 17 00:00:00 2001 From: howar6hill Date: Mon, 9 Mar 2020 21:37:08 +0800 Subject: [PATCH] LibJS: Remove superfluous explicit in AST.h (#1395) --- Libraries/LibJS/AST.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibJS/AST.h b/Libraries/LibJS/AST.h index b6a4d85560..a5ce6571cc 100644 --- a/Libraries/LibJS/AST.h +++ b/Libraries/LibJS/AST.h @@ -129,7 +129,7 @@ private: class IfStatement : public ASTNode { public: - explicit IfStatement(NonnullOwnPtr predicate, NonnullOwnPtr consequent, NonnullOwnPtr alternate) + IfStatement(NonnullOwnPtr predicate, NonnullOwnPtr consequent, NonnullOwnPtr alternate) : m_predicate(move(predicate)) , m_consequent(move(consequent)) , m_alternate(move(alternate))