From edd2e6bb271246d01de77ccf5882760c69a10659 Mon Sep 17 00:00:00 2001 From: "ricow@chromium.org" Date: Fri, 15 Apr 2011 08:40:16 +0000 Subject: [PATCH] Fix presubmit. Review URL: http://codereview.chromium.org/6869006 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7625 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/arm/lithium-arm.h | 2 +- src/x64/lithium-x64.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h index ea6aa5d..4add6bf 100644 --- a/src/arm/lithium-arm.h +++ b/src/arm/lithium-arm.h @@ -1416,7 +1416,7 @@ class LCallConstantFunction: public LTemplateInstruction<1, 0, 0> { class LInvokeFunction: public LTemplateInstruction<1, 1, 0> { public: - LInvokeFunction(LOperand* function) { + explicit LInvokeFunction(LOperand* function) { inputs_[0] = function; } diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h index 5a03d62..74f4820 100644 --- a/src/x64/lithium-x64.h +++ b/src/x64/lithium-x64.h @@ -1397,7 +1397,7 @@ class LCallConstantFunction: public LTemplateInstruction<1, 0, 0> { class LInvokeFunction: public LTemplateInstruction<1, 1, 0> { public: - LInvokeFunction(LOperand* function) { + explicit LInvokeFunction(LOperand* function) { inputs_[0] = function; } -- 2.7.4